Skip to content

Commit

Permalink
fix: latex spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
cdummett committed Jul 8, 2024
1 parent a84e7a3 commit 7081425
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---


matrix:

- name: Markdown
Expand Down Expand Up @@ -35,12 +34,15 @@ matrix:
# Ignore text between inline back ticks
- open: '`'
close: '`'
# Ignore text between inline dollar signs (KaTex/LaTeX math)
- open: '$'
close: '$'
# Ignore hugo/jinja tags
- open: '{{'
close: '}}'
# Ignore display LaTeX formulas ($$ ... $$)
- open: '\$\$'
close: '\$\$'
# Ignore display LaTeX formulas ($$ ... $$)
- open: '\$'
close: '\$'
- pyspelling.filters.markdown: null
- pyspelling.filters.html:
comments: false
Expand Down

0 comments on commit 7081425

Please sign in to comment.