Closed JobaDiniz closed 1 year ago
Hi @JobaDiniz
Could you try with the following configuration
matrix:
- name: Markdown
aspell:
lang: en
ignore-case: true
dictionary:
wordlists:
- spellcheck/wordlist.txt
encoding: utf-8
pipeline:
- pyspelling.filters.markdown:
markdown_extensions:
- pymdownx.striphtml
- pymdownx.superfences
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
sources:
- 'docs/*.md'
default_encoding: utf-8
Then I get the following:
Using pyspelling on configuration outlined in >spellcheck.yaml<
Checking files matching specified outlined in >spellcheck.yaml<
----------------------------------------------------------------
Using aspell to spellcheck Markdown
Running Task: Markdown...
Compiling Dictionary...
> Processing: example.md
Misspelled words:
<htmlcontent> example.md: html>body>p
--------------------------------------------------------------------------------
CLI
RPA
--------------------------------------------------------------------------------
Misspelled words:
<htmlcontent> example.md: html>body>div>ol>li>div>div>div>div>div.inner-content
--------------------------------------------------------------------------------
CLI
RPA
--------------------------------------------------------------------------------
Misspelled words:
<htmlcontent> example.md: html>body>div>ol>li>div>div>div>div>div.inner-content
--------------------------------------------------------------------------------
CLI
RPA
--------------------------------------------------------------------------------
!!!Spelling check failed!!!
::error title=Spelling errors::Files in repository contain spelling errors
Spellcheck failed
Then add CLI and RPA to you wordlist, since these are actual words.
Hi @JobaDiniz
I will close this issue, let me know if need additional support with you issue. If you experience anything else that require assistance please open an new issue.
Have a nice weekend
Markdown
I get these mispells
How can I tell this tool to skip HTML within markdown?
I've tried using
pymdownx.striphtml
andpymdownx.superfences
extensions, but it does not work.