Remove rule MD033 Inline HTML

We aren't following this rule in the `docs/es/features/graphql.md` file
because we need to specify the HTML ID attribute of an element (since by
default markdown generates IDs based on the text, and the text contains
accented letters).

Ideally we would simply ignore this rule on this file, but it isn't
currently possible with Markdownlint, so, until we find a better
solution, we're removing this rule.

We've considered keeping the rule and using heading IDs like:

```
 ## Características {#caracteristicas}
```

However, this syntax isn't supported by every application rendering
markdown. For instance, github doesn't support it, and we're aiming to
have a documentation that can be read on either github or gitbook.
This commit is contained in:
Javi Martín
2024-06-17 20:23:21 +02:00
parent 819485eb80
commit 5920ba7a70

View File

@@ -2,6 +2,7 @@ all
exclude_rule "MD013"
exclude_rule "MD024"
exclude_rule "MD029"
exclude_rule "MD033"
exclude_rule "MD041"
exclude_rule "MD046"