For the complete documentation index, see llms.txt. This page is also available as Markdown.

SkippedScopes

Learn about how to ignore block-level HTML tags.

StylesPath = styles

SkippedScopes = script, style, pre

[*.md]
BasedOnStyles = Vale

SkippedScopes 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