prepare for release
This commit is contained in:
parent
e58f0f5cd7
commit
5d2ab8403a
@ -6,12 +6,12 @@ def replaces_for_beginners_guide(text):
|
|||||||
text = re.sub('\[TOC\]\n', '', text, flags=re.MULTILINE)
|
text = re.sub('\[TOC\]\n', '', text, flags=re.MULTILINE)
|
||||||
text = re.sub('\*\*Table of Contents\*\*\n\[TOC2\]\n', '', text, flags=re.MULTILINE)
|
text = re.sub('\*\*Table of Contents\*\*\n\[TOC2\]\n', '', text, flags=re.MULTILINE)
|
||||||
text = re.sub('# -> \*\*\*Beginners Guide to Piracy\*\*\* <-\n', '', text, flags=re.MULTILINE)
|
text = re.sub('# -> \*\*\*Beginners Guide to Piracy\*\*\* <-\n', '', text, flags=re.MULTILINE)
|
||||||
text = re.sub(r"!!!note\s(.+?)\n", r"!!!\n\1\n!!!\n", text, flags=re.MULTILINE)
|
text = re.sub(r"!!!note\s(.+?)\n", r":::tip\n\1\n:::\n", text, flags=re.MULTILINE)
|
||||||
text = re.sub(r"!!!info\s(.+?)\n", r"!!!\n\1\n!!!\n", text, flags=re.MULTILINE)
|
text = re.sub(r"!!!info\s(.+?)\n", r":::info\n\1\n:::\n", text, flags=re.MULTILINE)
|
||||||
text = re.sub(r"!!!warning\s(.+?)\n", r"!!!warning\n\1\n!!!\n", text, flags=re.MULTILINE)
|
text = re.sub(r"!!!warning\s(.+?)\n", r":::warning\n\1\n:::\n", text, flags=re.MULTILINE)
|
||||||
text = re.sub(r">\s(.+?)\n", r"> \1\n\n", text, flags=re.MULTILINE)
|
text = re.sub(r">\s(.+?)\n", r"> \1\n\n", text, flags=re.MULTILINE)
|
||||||
text = re.sub('\*\*\[\^ Back to Top\]\(#beginners-guide-to-piracy\)\*\*', '', text, flags=re.MULTILINE)
|
text = re.sub('\*\*\[\^ Back to Top\]\(#beginners-guide-to-piracy\)\*\*', '', text, flags=re.MULTILINE)
|
||||||
text = re.sub("!!!\n!!!\n", "!!!\n", text, flags=re.MULTILINE)
|
text = re.sub(r"!!!\s(.+?)\n", r":::info\n\1\n:::\n", text, flags=re.MULTILINE)
|
||||||
text = re.sub("\n\*\*\[", "\n* **[", text, flags=re.MULTILINE)
|
text = re.sub("\n\*\*\[", "\n* **[", text, flags=re.MULTILINE)
|
||||||
return text
|
return text
|
||||||
|
|
||||||
@ -34,10 +34,10 @@ def change_some_general_formatting(text):
|
|||||||
text = re.sub('## ▷', '###', text)
|
text = re.sub('## ▷', '###', text)
|
||||||
text = re.sub('####', '###', text)
|
text = re.sub('####', '###', text)
|
||||||
|
|
||||||
text = re.sub(r'^\*\*Note\*\* - (.+)$', r'!!!\n\1\n!!!', text, flags=re.MULTILINE)
|
text = re.sub(r'^\*\*Note\*\* - (.+)$', r':::tip\n\1\n:::', text, flags=re.MULTILINE)
|
||||||
text = re.sub(r'^\* \*\*Note\*\* - (.+)$', r'!!!\n\1\n!!!', text, flags=re.MULTILINE)
|
text = re.sub(r'^\* \*\*Note\*\* - (.+)$', r':::tip\n\1\n:::', text, flags=re.MULTILINE)
|
||||||
text = re.sub(r'^Note - (.+)$', r'!!!\n\1\n!!!', text, flags=re.MULTILINE)
|
text = re.sub(r'^Note - (.+)$', r':::tip\n\1\n:::', text, flags=re.MULTILINE)
|
||||||
text = re.sub(r'^\*\*Warning\*\* - (.+)$', r'!!!warning\n\1\n!!!', text, flags=re.MULTILINE)
|
text = re.sub(r'^\*\*Warning\*\* - (.+)$', r':::warning\n\1\n:::', text, flags=re.MULTILINE)
|
||||||
|
|
||||||
return text
|
return text
|
||||||
|
|
2
.github/script.sh
vendored
Normal file
2
.github/script.sh
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
python .github/replace.py
|
||||||
|
python .github/add-headers.py
|
40
.github/workflows/retype.yml
vendored
40
.github/workflows/retype.yml
vendored
@ -1,40 +0,0 @@
|
|||||||
name: Update FMHY Retype
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: "0 */2 * * *"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update:
|
|
||||||
name: Update FMHY Retype
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Move Files
|
|
||||||
run: |
|
|
||||||
cp -r .github/assets/* .
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Install Python
|
|
||||||
uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "3.10"
|
|
||||||
|
|
||||||
- name: Prepare Files
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
python .github/replace-links-to-fmhy-in-files-in-current-dir.py
|
|
||||||
python .github/add-headers.py
|
|
||||||
|
|
||||||
- name: Build Retype
|
|
||||||
uses: retypeapp/action-build@latest
|
|
||||||
|
|
||||||
- uses: retypeapp/action-github-pages@latest
|
|
||||||
with:
|
|
||||||
branch: retype
|
|
||||||
update-branch: true
|
|
Loading…
x
Reference in New Issue
Block a user