From dec5f18ca25a8106e73d515ad6ea035ac5bdf20a Mon Sep 17 00:00:00 2001 From: KG Date: Sat, 25 May 2024 16:16:46 -0500 Subject: [PATCH] Remove hex names from Tokens dropdown --- .github/workflows/static.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 41ae3b1..23d3004 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -54,9 +54,10 @@ jobs: icon: calculator - name: Fix links to Markdown pages - run: | - cd ./html - sudo find . -name "*.html" -type f -exec sed -i -r "s:\.md:\.html:g" {} \; + run: sudo find ./html -name "*.html" -type f -exec sed -i -r "s:\.md:\.html:g" {} \; + + - name: Remove hex names from Tokens dropdown + run: sudo find ./html -name "*.html" -type f -exec perl -0777pe "s/
  • \s*/ /s" {} \; - name: Upload artifact uses: actions/upload-pages-artifact@v3