We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c636be4 commit 51e8c45Copy full SHA for 51e8c45
.github/workflows/build.yaml
@@ -49,6 +49,15 @@ jobs:
49
run: |
50
mkdocs build --strict
51
52
+ - name: Verify that there are no variables in generated HTML
53
+ run: |
54
+ # Check for raw MkDocs variables in the generated HTML
55
+ if grep -Erl "\[\[=.*=\]\]" site > /dev/null; then
56
+ echo "Raw variables detected in the following files:"
57
+ grep -Erl "\[\[=.*=\]\]" site
58
+ exit 1
59
+ fi
60
+
61
vale-check:
62
runs-on: ubuntu-latest
63
if: github.event_name == 'pull_request'
0 commit comments