SkippedScopes
StylesPath = styles
SkippedScopes = script, style, pre
[*.md]
BasedOnStyles = ValeThis is a sentence that contains normal text.
```python
# This is a code block.
print("Hello, world!")
```
Another normal sentence.Last updated
Learn about how to ignore block-level HTML tags.
StylesPath = styles
SkippedScopes = script, style, pre
[*.md]
BasedOnStyles = ValeSkippedScopes specifies block-level HTML tags to ignore. Any content in these scopes will be ignored.
By default, Vale ignores script, style, pre, figure, noscript, and iframe tags. Setting this key replaces that list rather than adding to it, so include the defaults you still want. For example, considering the following Markdown file:
This is a sentence that contains normal text.
```python
# This is a code block.
print("Hello, world!")
```
Another normal sentence.Vale will not raise any alerts for the content within the code block.
See Markup for more information.
Last updated
