manual update links collections

This commit is contained in:
Mik-TF 2024-05-14 17:57:07 -04:00
parent db14287779
commit 6af3393b83
3 changed files with 4 additions and 28 deletions

View File

@ -58,7 +58,7 @@ ThreeFold DMCC (Dubai) is in the process of acquiring a substantial number of to
## Proof-of-Utilization Wallets ## Proof-of-Utilization Wallets
There are some wallets associated with [proof-of-utilization](../../../farming/proof_of_utilization.md). These wallets are on TFChain. There are some wallets associated with [proof-of-utilization](proof_of_utilization.md). These wallets are on TFChain.
The addresses are the following: The addresses are the following:

View File

@ -20,10 +20,10 @@ In this guide, we go through the basic steps to deploy a [Hummingbot](https://hu
## Prerequisites ## Prerequisites
- [A TFChain account](../../../dashboard/wallet_connector.md) - [A TFChain account](wallet_connector.md)
- TFT in your TFChain account - TFT in your TFChain account
- [Buy TFT](../../../threefold_token/buy_sell_tft/buy_sell_tft.md) - [Buy TFT](buy_sell_tft.md)
- [Send TFT to TFChain](../../../threefold_token/tft_bridges/tfchain_stellar_bridge.md) - [Send TFT to TFChain](tfchain_stellar_bridge.md)
## Deploy a Full VM ## Deploy a Full VM

View File

@ -1,24 +0,0 @@
import os
import re
# Get a list of all files in the current directory
files = []
for root, dirs, filenames in os.walk('.'):
for filename in filenames:
files.append(os.path.join(root, filename))
# Loop through each file
for file in files:
# Check if the file is a markdown file (.md)
if file.endswith('.md'):
with open(file, 'r') as f:
content = f.read()
# Find all strings that start with ]( and end with.md
matches = re.findall(r'\]\(([^)]+)\.md\)', content)
# Loop through each match
new_content = content
for match in matches:
# If the match contains at least one /, remove everything before the last /
if '/' in match:
new_match = match.split('/')[-1]
new_content = new_content.replace(match, new_match)
with open(file, 'w') as f:
f.write(new_content)