Skip to content

Commit ce9b5c5

Browse files
committed
markdown formatting fixes
1 parent 7c31489 commit ce9b5c5

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ There are some sample unit tests that are located in the test directory. They
8383
capture basic auth/capture (product purchase) functionality, which most
8484
integrations are looking to get started with.
8585

86-
###Charge a credit card
86+
### Charge a credit card
8787

8888
A transaction to authorize and charge a credit card payment can be performed with
8989
the following code (JSP) :
90-
````jsp
90+
```jsp
9191
<%@ page import = "java.math.BigDecimal" %>
9292
<%@ page import = "java.util.Map" %>
9393
<%@ page import = "net.authorize.Environment" %>
@@ -151,12 +151,12 @@ the following code (JSP) :
151151
}
152152
}
153153
%>
154-
````
154+
```
155155

156-
###Capture a Previously Authorized Amount
156+
### Capture a Previously Authorized Amount
157157
A transaction to capture funds for a transaction that was previously authorized
158158
using `authOnlyTransaction` can be performed with the following code (JSP) :
159-
````jsp
159+
```jsp
160160
<%@ page import = "java.math.BigDecimal" %>
161161
<%@ page import = "net.authorize.Environment" %>
162162
<%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -211,7 +211,7 @@ using `authOnlyTransaction` can be performed with the following code (JSP) :
211211
}
212212
}
213213
%>
214-
````
214+
```
215215

216216
Test Code - Recurring Billing
217217
=============================================
@@ -221,12 +221,12 @@ Test Code - Recurring Billing
221221
There are some sample unit tests that are located in the test directory.
222222
They capture basic create/update/cancel/get subscription recurring billing requests.
223223

224-
###Create a Subscription
224+
### Create a Subscription
225225
For subscriptions with a monthly interval, whose payments begin on the 31st of a month,
226226
payments for months with fewer than 31 days occur on the last day of the month.
227227

228228
A transaction to create a new subscription can be performed with the following code (JSP) :
229-
````jsp
229+
```jsp
230230
<%@ page import = "java.math.BigDecimal" %>
231231
<%@ page import = "net.authorize.Environment" %>
232232
<%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -313,7 +313,7 @@ A transaction to create a new subscription can be performed with the following c
313313
}
314314
}
315315
%>
316-
````
316+
```
317317

318318
Test Code - PayPal Express Checkout
319319
=============================================
@@ -325,13 +325,13 @@ The following calls are createTransactionRequest calls with PayPal-specific fiel
325325
You must first sign up for the service in the [Authorize.Net Merchant Interface](https://account.authorize.net).
326326
The sign up page is at Accounts > Digital Payment Solutions.
327327

328-
###Authorization Only
328+
### Authorization Only
329329
An Authorization Only request notifies PayPal that an authorization has been initiated
330330
but does not complete the authorization. It returns a secure URL with a token appended to it.
331331
The purpose of this token is to identify the transaction when the customer is redirected to PayPal.
332332

333333
A transaction of this type can be performed with the following code (JSP) :
334-
````jsp
334+
```jsp
335335
<%@ page import = "java.math.BigDecimal" %>
336336
<%@ page import = "net.authorize.Environment" %>
337337
<%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -404,17 +404,17 @@ A transaction of this type can be performed with the following code (JSP) :
404404
}
405405
}
406406
%>
407-
````
407+
```
408408

409-
###Authorization and Capture
409+
### Authorization and Capture
410410
This type of transaction is the most common and is the default payment gateway transaction type.
411411
Like the Authorization Only request, it notifies PayPal that an Authorization and Capture transaction
412412
has been initiated, but does not complete the request. It also returns a secure URL with a token
413413
appended to it. The purpose of this token is to identify the transaction when the customer is
414414
redirected to PayPal.
415415

416416
A transaction of this type can be performed with the following code (JSP) :
417-
````jsp
417+
```jsp
418418
<%@ page import = "java.math.BigDecimal" %>
419419
<%@ page import = "net.authorize.Environment" %>
420420
<%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -487,7 +487,7 @@ A transaction of this type can be performed with the following code (JSP) :
487487
}
488488
}
489489
%>
490-
````
490+
```
491491

492492
Test Code - Customer Profiles
493493
==============================================
@@ -497,13 +497,13 @@ There are some sample unit tests that are located in the test directory. They
497497
capture requests that create, delete, get, and update customer profile
498498
information, including payment and address information.
499499

500-
###Create Customer Profile
500+
### Create Customer Profile
501501
Use this function to create a new customer profile including any customer
502502
payment profiles and customer shipping addresses. The createCustomerProfileResponse
503503
field returns the assigned customerProfileId element for the created profile.
504504

505505
A transaction of this type can be performed with the following code (JSP) :
506-
````jsp
506+
```jsp
507507
<%@ page import = "java.math.BigDecimal" %>
508508
<%@ page import = "net.authorize.Environment" %>
509509
<%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -589,7 +589,7 @@ A transaction of this type can be performed with the following code (JSP) :
589589
}
590590
}
591591
%>
592-
````
592+
```
593593

594594
Test Code - Transaction Reporting
595595
==============================================
@@ -598,11 +598,11 @@ Test Code - Transaction Reporting
598598
There are some sample unit tests that are located in the test directory. They
599599
capture requests that retrieve transaction data that was processed by Authorize.Net.
600600

601-
###Get Transaction Details
601+
### Get Transaction Details
602602
Use this function to get detailed information about a specific transaction.
603603

604604
A transaction of this type can be performed with the following code (JSP) :
605-
````jsp
605+
```jsp
606606
<%@ page import = "java.math.BigDecimal" %>
607607
<%@ page import = "net.authorize.Environment" %>
608608
<%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -652,7 +652,7 @@ A transaction of this type can be performed with the following code (JSP) :
652652
}
653653
}
654654
%>
655-
````
655+
```
656656

657657
Test Code - Apple Pay
658658
==============================================
@@ -661,15 +661,15 @@ Test Code - Apple Pay
661661
Apple Pay support is available through the SDK using our new model
662662
and code samples.
663663

664-
###Create a Apple Pay Transaction
664+
### Create a Apple Pay Transaction
665665
Use this function to create an Authorize.Net payment transaction request
666666
using Apple Pay Opaque data in place of card data.
667667

668668
**_Data Value (Apple Pay Blob) is one-time use value._**
669669

670670
A transaction of this type can be performed with the following code (JSP) :
671671

672-
````jsp
672+
```jsp
673673
<%@ page import = "java.math.BigDecimal" %>
674674
<%@ page import = "java.util.Map" %>
675675
<%@ page import = "net.authorize.Environment" %>
@@ -724,7 +724,7 @@ A transaction of this type can be performed with the following code (JSP) :
724724
}
725725
726726
%>
727-
````
727+
```
728728

729729

730730
Test Code - Visa Checkout
@@ -734,14 +734,14 @@ Test Code - Visa Checkout
734734
Visa Checkout support is also available through the SDK using our new model
735735
and code samples.
736736

737-
###Create a Visa Checkout Transaction
737+
### Create a Visa Checkout Transaction
738738
Use this function to create an Authorize.Net payment transaction request
739739
using Visa Checkout data in place of card data.
740740

741741
**_Data Value, Data Key and Call ID are one-time use values._**
742742

743743
A transaction of this type can be performed with the following code (JSP) :
744-
````jsp
744+
```jsp
745745
<%@ page import = "java.math.BigDecimal" %>
746746
<%@ page import = "java.util.Map" %>
747747
<%@ page import = "net.authorize.Environment" %>
@@ -816,4 +816,4 @@ A transaction of this type can be performed with the following code (JSP) :
816816
}
817817
}
818818
%>
819-
````
819+
```

0 commit comments

Comments
 (0)