Skip to content

Commit 7f01ece

Browse files
authored
Merge pull request #20 from o-l-a-v/chore/rumdl-fixes
chore: fix some rumdl related stuff
2 parents 691c360 + 0d667a4 commit 7f01ece

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.config/rumdl.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ style = "asterisk"
1616
[MD029]
1717
style = "one-or-ordered"
1818

19+
# MD033 / no-inline-html - No HTML tags
20+
[MD033]
21+
allowed-elements = ["details", "summary"]
22+
1923
# MD040 / fenced-code-language - Code blocks should have a language specified
2024
[MD040]
2125
style = "disabled"

.github/workflows/pr-any-lint-markdown.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
paths:
88
- "**.md"
9-
- ".rumdl.toml"
9+
- "**/*rumdl.toml"
1010

1111
concurrency:
1212
group: ${{ github.workflow }}-${{ github.ref }}
@@ -32,7 +32,8 @@ jobs:
3232
markdown:
3333
- added|modified: '**.md'
3434
rumdlconf:
35-
- added|modified: '.rumdl.toml'
35+
- added|modified: '{.,}rumdl.toml'
36+
- added|modified: '.config/{.,}rumdl.toml'
3637
list-files: escape
3738
- name: ⬇️ Install the latest version of uv
3839
if: steps.filter.outputs.markdown == 'true' || steps.filter.outputs.rumdlconf == 'true'

0 commit comments

Comments
 (0)