diff --git a/docs/tutorials/javascript/amm/add-assets-to-amm.md b/docs/tutorials/javascript/amm/add-assets-to-amm.md index 22292a4f86..11379e7b2a 100644 --- a/docs/tutorials/javascript/amm/add-assets-to-amm.md +++ b/docs/tutorials/javascript/amm/add-assets-to-amm.md @@ -11,9 +11,9 @@ This example shows how to: [![Add assets to AMM test harness](/docs/img/quickstart-add-to-amm1.png)](/docs/img/quickstart-add-to-amm1.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. -{% admonition type="note" name="Note" %} +{% admonition type="info" name="Note" %} Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} diff --git a/docs/tutorials/javascript/amm/create-an-amm.md b/docs/tutorials/javascript/amm/create-an-amm.md index 68d0a888f9..ff33968cdd 100644 --- a/docs/tutorials/javascript/amm/create-an-amm.md +++ b/docs/tutorials/javascript/amm/create-an-amm.md @@ -9,9 +9,9 @@ This example shows how to: [![Create AMM test harness](/docs/img/quickstart-create-amm1.png)](/docs/img/quickstart-create-amm1.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. -{% admonition type="note" name="Note" %} +{% admonition type="info" name="Note" %} Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} @@ -81,7 +81,7 @@ Create a new AMM pool with XRP and the issued tokens. 5. Enter an amount in the **Asset 2 Amount** field. 6. Click **Create AMM**. -{% admonition type="note" name="Note" %} +{% admonition type="info" name="Note" %} Save the seed values of the standby and operational accounts for subsequent AMM tutorials. {% /admonition %} diff --git a/docs/tutorials/javascript/amm/trade-with-auction-slot.md b/docs/tutorials/javascript/amm/trade-with-auction-slot.md index cd0e2897d1..fd1c016a8c 100644 --- a/docs/tutorials/javascript/amm/trade-with-auction-slot.md +++ b/docs/tutorials/javascript/amm/trade-with-auction-slot.md @@ -11,9 +11,9 @@ This example shows how to: [![Trade with Auction Slot Test Harness](/docs/img/quickstart-trade-auction-slot1.png)](/docs/img/quickstart-trade-auction-slot1.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. -{% admonition type="note" name="Note" %} +{% admonition type="info" name="Note" %} Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} diff --git a/docs/tutorials/javascript/nfts/assign-an-authorized-minter.md b/docs/tutorials/javascript/nfts/assign-an-authorized-minter.md index 7c4153d4c5..b01d5077b9 100644 --- a/docs/tutorials/javascript/nfts/assign-an-authorized-minter.md +++ b/docs/tutorials/javascript/nfts/assign-an-authorized-minter.md @@ -22,7 +22,7 @@ This example shows how to: # Usage -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try the sample in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try the sample in your own browser. ## Get Accounts @@ -95,7 +95,7 @@ The results show that the Issuer account has been credited 25 XRP. The Buyer acc # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. ## Set Minter diff --git a/docs/tutorials/javascript/nfts/batch-mint-nfts.md b/docs/tutorials/javascript/nfts/batch-mint-nfts.md index ac9bcda47d..248d80fbf7 100644 --- a/docs/tutorials/javascript/nfts/batch-mint-nfts.md +++ b/docs/tutorials/javascript/nfts/batch-mint-nfts.md @@ -19,7 +19,7 @@ A best practice is to use `Tickets` to reserve the transaction sequence numbers. ## Usage -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try the sample in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try the sample in your own browser. ## Get an Account @@ -56,7 +56,7 @@ The difference between this function and the `getTokens()` function used earlier # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. ## Get Account From Seed diff --git a/docs/tutorials/javascript/nfts/broker-an-nft-sale.md b/docs/tutorials/javascript/nfts/broker-an-nft-sale.md index ad635c8dbe..c79a2d88b0 100644 --- a/docs/tutorials/javascript/nfts/broker-an-nft-sale.md +++ b/docs/tutorials/javascript/nfts/broker-an-nft-sale.md @@ -23,7 +23,7 @@ This example shows how to: [![Quickstart form with Broker Account](/docs/img/quickstart21.png)](/docs/img/quickstart21.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. ## Get Accounts @@ -94,7 +94,7 @@ After accepting a buy offer, a best practice for the broker is to cancel all oth # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to examine the code samples. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to examine the code samples. ## ripplex5-broker-nfts.js diff --git a/docs/tutorials/javascript/nfts/mint-and-burn-nfts.md b/docs/tutorials/javascript/nfts/mint-and-burn-nfts.md index 4552a9f2ff..cb691af3a3 100644 --- a/docs/tutorials/javascript/nfts/mint-and-burn-nfts.md +++ b/docs/tutorials/javascript/nfts/mint-and-burn-nfts.md @@ -20,7 +20,7 @@ This example shows how to: # Usage -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try the sample in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try the sample in your own browser. ## Get Accounts @@ -70,7 +70,7 @@ To permanently destroy an NFT: # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to examine the code samples. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to examine the code samples. ## ripplex3-mint-nfts.js diff --git a/docs/tutorials/javascript/nfts/transfer-nfts.md b/docs/tutorials/javascript/nfts/transfer-nfts.md index dc98421e37..702803e18f 100644 --- a/docs/tutorials/javascript/nfts/transfer-nfts.md +++ b/docs/tutorials/javascript/nfts/transfer-nfts.md @@ -21,7 +21,7 @@ This example shows how to: [![Quickstart form with NFT transfer fields](/docs/img/quickstart13.png)](/docs/img/quickstart13.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. # Usage @@ -110,7 +110,7 @@ To cancel a buy or sell offer that you have created: # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. ## Create Sell Offer diff --git a/docs/tutorials/javascript/send-payments/create-accounts-send-xrp.md b/docs/tutorials/javascript/send-payments/create-accounts-send-xrp.md index 4e45298907..45d017cdaa 100644 --- a/docs/tutorials/javascript/send-payments/create-accounts-send-xrp.md +++ b/docs/tutorials/javascript/send-payments/create-accounts-send-xrp.md @@ -29,7 +29,7 @@ To get started, create a new folder on your local disk and install the JavaScrip npm install xrpl ``` -Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive. +Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive. {% admonition type="info" name="Note" %}Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} @@ -71,7 +71,7 @@ To transfer XRP from the Operational account to the Standby account: # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) in the source repository for this website. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/)in the source repository for this website. ## ripplex-1-send-xrp.js diff --git a/docs/tutorials/javascript/send-payments/create-conditional-escrows.md b/docs/tutorials/javascript/send-payments/create-conditional-escrows.md index 1ee0c06dad..0d38cb71d3 100644 --- a/docs/tutorials/javascript/send-payments/create-conditional-escrows.md +++ b/docs/tutorials/javascript/send-payments/create-conditional-escrows.md @@ -24,7 +24,7 @@ This example shows how to: ## Prerequisites -Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive. +Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive. ## Usage @@ -121,7 +121,7 @@ If you forget to save the sequence number, you can find it in the escrow transac # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) in the source repository for this website. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/)in the source repository for this website. ## getConditionAndFulfillment.js diff --git a/docs/tutorials/javascript/send-payments/create-time-based-escrows.md b/docs/tutorials/javascript/send-payments/create-time-based-escrows.md index df68e38c29..ef7e7fb372 100644 --- a/docs/tutorials/javascript/send-payments/create-time-based-escrows.md +++ b/docs/tutorials/javascript/send-payments/create-time-based-escrows.md @@ -24,7 +24,7 @@ This example shows how to: ## Prerequisites -Download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/). +Download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/). ## Usage @@ -119,7 +119,7 @@ If you forget to save the sequence number, you can find it in the escrow transac # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) in the source repository for this website. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/)in the source repository for this website. ## ripple8-escrow.js diff --git a/docs/tutorials/javascript/send-payments/create-trust-line-send-currency.md b/docs/tutorials/javascript/send-payments/create-trust-line-send-currency.md index c550cec7b1..adae0c244c 100644 --- a/docs/tutorials/javascript/send-payments/create-trust-line-send-currency.md +++ b/docs/tutorials/javascript/send-payments/create-trust-line-send-currency.md @@ -22,7 +22,7 @@ This example shows how to: [![Test harness with currency transfer](/docs/img/quickstart5.png)](/docs/img/quickstart5.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. {% admonition type="info" name="Note" %}Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} @@ -67,7 +67,7 @@ To transfer an issued currency token, once you have created a trust line: # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) archive to try each of the samples in your own browser. ## ripplex2-send-currency.js diff --git a/docs/tutorials/javascript/send-payments/send-and-cash-checks.md b/docs/tutorials/javascript/send-payments/send-and-cash-checks.md index 0e8c096fb4..1f50d0a392 100644 --- a/docs/tutorials/javascript/send-payments/send-and-cash-checks.md +++ b/docs/tutorials/javascript/send-payments/send-and-cash-checks.md @@ -27,7 +27,7 @@ Checks offer another option for transferring funds between accounts. Checks have ## Prerequisites -Clone or download the [Modular Tutorial Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/js/){.github-code-download}. +Clone or download the [Modular Tutorial Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/js/). {% admonition type="info" name="Note" %}Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} @@ -111,7 +111,7 @@ To cancel a check you have previously sent to another account. # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/js/){.github-code-download} in the source repository for this website. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/js/) in the source repository for this website. ## ripplex10-check.js @@ -898,4 +898,4 @@ async function opCancelCheck() { -``` \ No newline at end of file +``` diff --git a/docs/tutorials/python/nfts/assign-an-authorized-minter.md b/docs/tutorials/python/nfts/assign-an-authorized-minter.md index 3beab7be1e..0a7d7b116a 100644 --- a/docs/tutorials/python/nfts/assign-an-authorized-minter.md +++ b/docs/tutorials/python/nfts/assign-an-authorized-minter.md @@ -23,7 +23,7 @@ This example shows how to: # Usage -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try the sample in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try the sample in your own browser. ## Get Accounts @@ -108,7 +108,7 @@ The Buyer account was debited the 100 XRP price plus 10 drops as the transaction # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples. ## mod6.py diff --git a/docs/tutorials/python/nfts/batch-mint-nfts.md b/docs/tutorials/python/nfts/batch-mint-nfts.md index 948ccdd92d..32933ad343 100644 --- a/docs/tutorials/python/nfts/batch-mint-nfts.md +++ b/docs/tutorials/python/nfts/batch-mint-nfts.md @@ -20,7 +20,7 @@ A best practice is to use `Tickets` to reserve the transaction sequence numbers. ## Usage -You can download or clone the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) to try the sample in your own browser. +You can download or clone the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/)to try the sample in your own browser. ## Get an Account @@ -58,7 +58,7 @@ The difference between this function and the `getTokens()` function used earlier # Code Walkthrough -You can download or clone the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) to try each of the samples locally. +You can download or clone the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/)to try each of the samples locally. Import dependencies and define the testnet_url variable. diff --git a/docs/tutorials/python/nfts/broker-an-nft-sale.md b/docs/tutorials/python/nfts/broker-an-nft-sale.md index 04fdc9b00c..5a78d141b8 100644 --- a/docs/tutorials/python/nfts/broker-an-nft-sale.md +++ b/docs/tutorials/python/nfts/broker-an-nft-sale.md @@ -24,7 +24,7 @@ This example shows how to: [![Quickstart form with Broker Account](/docs/img/quickstart-py23.png)](/docs/img/quickstart-py23.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. ## Get Accounts @@ -101,7 +101,7 @@ After accepting a buy offer, a best practice for the broker is to cancel all oth # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to examine the code samples. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to examine the code samples. ## ripplex5-broker-nfts.js diff --git a/docs/tutorials/python/nfts/mint-and-burn-nfts.md b/docs/tutorials/python/nfts/mint-and-burn-nfts.md index 47e1a0989a..65ec9878ee 100644 --- a/docs/tutorials/python/nfts/mint-and-burn-nfts.md +++ b/docs/tutorials/python/nfts/mint-and-burn-nfts.md @@ -21,7 +21,7 @@ This example shows how to: # Usage -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try the sample in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try the sample in your own browser. ## Get Accounts @@ -76,7 +76,7 @@ To permanently destroy an NFT: # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to examine the code samples. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to examine the code samples. ## mod3.py diff --git a/docs/tutorials/python/nfts/transfer-nfts.md b/docs/tutorials/python/nfts/transfer-nfts.md index cd80ee92ab..b28d4c5aa5 100644 --- a/docs/tutorials/python/nfts/transfer-nfts.md +++ b/docs/tutorials/python/nfts/transfer-nfts.md @@ -22,7 +22,7 @@ This example shows how to: [![Quickstart form with NFT transfer fields](/docs/img/quickstart-py15.png)](/docs/img/quickstart-py15.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. # Usage @@ -125,7 +125,7 @@ To cancel a buy or sell offer that you have created: # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. ## mod4.py This module contains the new methods `create_sell_offer`, `create_buy_offer`, `accept_sell_offer`, `accept_buy_offer`, `get_offers`, and `cancel_offer`. diff --git a/docs/tutorials/python/send-payments/create-accounts-send-xrp.md b/docs/tutorials/python/send-payments/create-accounts-send-xrp.md index 6b7286b744..e31186ef4d 100644 --- a/docs/tutorials/python/send-payments/create-accounts-send-xrp.md +++ b/docs/tutorials/python/send-payments/create-accounts-send-xrp.md @@ -29,7 +29,7 @@ To get started, create a new folder on your local disk and install the Python li pip3 install xrpl-py ``` -Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive. +Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive. {% admonition type="info" name="Note" %}Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} @@ -71,7 +71,7 @@ To transfer XRP from the Operational account to the Standby account: # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) in the source repository for this website. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/)in the source repository for this website. ## mod1.py diff --git a/docs/tutorials/python/send-payments/create-conditional-escrows.md b/docs/tutorials/python/send-payments/create-conditional-escrows.md index a8ab0bed11..25567d8acd 100644 --- a/docs/tutorials/python/send-payments/create-conditional-escrows.md +++ b/docs/tutorials/python/send-payments/create-conditional-escrows.md @@ -24,7 +24,7 @@ This example shows how to: ## Prerequisites -Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive. +Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive. You need the `cryptoconditions` module to generate your condition/fulfillment pair. You can install the module using [pip](https://pip.pypa.io/en/stable/). @@ -128,7 +128,7 @@ If you forget to save the sequence number, you can find it in the escrow transac # Code Walkthrough -You can download the [Modular Tutorials](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) in the source repository for this website. +You can download the [Modular Tutorials](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/)in the source repository for this website. ## mod9.py diff --git a/docs/tutorials/python/send-payments/create-time-based-escrows.md b/docs/tutorials/python/send-payments/create-time-based-escrows.md index 5a15f71080..307f2551c4 100644 --- a/docs/tutorials/python/send-payments/create-time-based-escrows.md +++ b/docs/tutorials/python/send-payments/create-time-based-escrows.md @@ -24,7 +24,7 @@ This example shows how to: ## Prerequisites -Download the [Python Modular Code Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/). +Download the [Python Modular Code Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/). ## Usage @@ -123,7 +123,7 @@ If you forget to save the sequence number, you can find it in the escrow transac # Code Walkthrough -You can download the [Python Modular Code Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) in the source repository for this website. +You can download the [Python Modular Code Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/)in the source repository for this website. ## mod8.py diff --git a/docs/tutorials/python/send-payments/create-trust-line-send-currency.md b/docs/tutorials/python/send-payments/create-trust-line-send-currency.md index 6e565fa95e..82f1015cfe 100644 --- a/docs/tutorials/python/send-payments/create-trust-line-send-currency.md +++ b/docs/tutorials/python/send-payments/create-trust-line-send-currency.md @@ -21,7 +21,7 @@ This example shows how to: [![Test harness with currency transfer](/docs/img/quickstart-py5.png)](/docs/img/quickstart-py5.png) -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples in your own browser. {% admonition type="info" name="Note" %}Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} @@ -89,7 +89,7 @@ Verify the setting by looking for the _Clear Flag_ value in the response, which # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py/) archive to try each of the samples. ## mod2.py diff --git a/docs/tutorials/python/send-payments/send-and-cash-checks.md b/docs/tutorials/python/send-payments/send-and-cash-checks.md index d80666cf2e..dde3a10a96 100644 --- a/docs/tutorials/python/send-payments/send-and-cash-checks.md +++ b/docs/tutorials/python/send-payments/send-and-cash-checks.md @@ -33,7 +33,7 @@ If you haven't done so already, create a new folder on your local disk and insta pip3 install xrpl-py ``` -Clone or download the [Modular Tutorial Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/py/){.github-code-download}. +Clone or download the [Modular Tutorial Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/py/). {% admonition type="info" name="Note" %}Without the Quickstart Samples, you will not be able to try the examples that follow. {% /admonition %} @@ -120,7 +120,7 @@ To cancel a check you have previously sent to another account. # Code Walkthrough -You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/py/){.github-code-download} in the source repository for this website. +You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/py/) in the source repository for this website. ## mod10.py @@ -659,4 +659,4 @@ btn_op_get_balances.grid(row=8, column=3, sticky="nsew") # Start the application window.mainloop() -``` \ No newline at end of file +```