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.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, and pre tags. 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.
