-
In the docs for reStructuredText, it mentions:
Does by default imply there is a way to ignore other reStructuredText directives? I'm guessing not, but I thought I would start by asking. If it's possible to implement, it would be nice to ignore directives/roles such as math, but I understand there might be limitations from the parser. edit: I'm guessing the logic would be somewhere in here: https://github.com/errata-ai/vale/blob/v2/internal/lint/rst.go |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can do this with a [*]
BasedOnStyles = Vale
BlockIgnores = (?s) *(\.\. math::) |
Beta Was this translation helpful? Give feedback.
You can do this with a
BlockIgnores
pattern: