Migrate content syntax via script

The changes in this commit were auto-generated by running

tool/migrate.sh

Following this commit, the Dactyl build no longer works but the Redocly
build (mostly) should.
This commit is contained in:
mDuo13
2024-01-31 16:09:41 -08:00
parent 96121303b2
commit 554a3732d4
898 changed files with 19879 additions and 18631 deletions

View File

@@ -18,7 +18,7 @@ This example shows how to:
4. Send issued currency between accounts.
5. Display account balances for all currencies.
[![Test harness with currency transfer](img/quickstart-py5.png)](img/quickstart-py5.png)
[![Test harness with currency transfer](/img/quickstart-py5.png)](/img/quickstart-py5.png)
You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/py/){.github-code-download} archive to try each of the samples in your own browser.
@@ -51,7 +51,7 @@ To create a trust line between accounts:
3. Enter the destination account value in the **Destination** field.
4. Click **Create Trust Line**.
[![Trust line results](img/quickstart-py6.png)](img/quickstart-py6.png)
[![Trust line results](/img/quickstart-py6.png)](/img/quickstart-py6.png)
## Send an Issued Currency Token
@@ -62,7 +62,7 @@ To transfer an issued currency token, once you have created a trust line:
3. Enter the **Currency** type.
4. Click **Send Currency**.
[![Currency transfer](img/quickstart-py7.png)](img/quickstart-py7.png)
[![Currency transfer](/img/quickstart-py7.png)](/img/quickstart-py7.png)
### Configure Account
@@ -75,7 +75,7 @@ To enable rippling:
Verify the setting by looking for the _Set Flag_ value in the response, which should show a flag setting of _8_.
[![Configure Account - Enable Rippling](img/quickstart-py8.png)](img/quickstart-py8.png)
[![Configure Account - Enable Rippling](/img/quickstart-py8.png)](/img/quickstart-py8.png)
To disable rippling:
@@ -84,7 +84,7 @@ To disable rippling:
Verify the setting by looking for the _Clear Flag_ value in the response, which shold show a flag setting of _8_.
[![Configure Account - Disable Rippling](img/quickstart-py9.png)](img/quickstart-py9.png)
[![Configure Account - Disable Rippling](/img/quickstart-py9.png)](/img/quickstart-py9.png)
# Code Walkthrough
@@ -220,7 +220,7 @@ Return the result.
### configure_account
This example shows how to set and clear configuration flags using the `AccountSet` method. The `ASF_DEFAULT_RIPPLE` flag is pertinent to experimentation with transfer of issued currencies to third-party accounts, so it is demonstrated here. You can set any of the configuration flags using the same structure, substituting the particular flags you want to set. See [AccountSet Flags](accountset.html).
This example shows how to set and clear configuration flags using the `AccountSet` method. The `ASF_DEFAULT_RIPPLE` flag is pertinent to experimentation with transfer of issued currencies to third-party accounts, so it is demonstrated here. You can set any of the configuration flags using the same structure, substituting the particular flags you want to set. See [AccountSet Flags](../../references/protocol/transactions/types/accountset.md).
Send the account seed and a Boolean value for whether to enable or disable rippling.
```python
@@ -576,4 +576,4 @@ btn_op_configure_account.grid(row=7,column=4, sticky = "nsew")
```python
window.mainloop()
```
```