Closed tenstad closed 8 months ago
In the GitLab renderer, it appears every other asterix should be escaped 🤔
Pattern: `[a]\*[b]\*[c]\*[d][a]\*[b]\*[c]\*[d]` +
Pattern: `[a]\*[b]*[c]\*[d][a]*[b]\*[c]*[d]` +
Pattern: `[a]*[b]*[c]*[d][a]*[b]*[c]*[d]` +
Pattern: [a]*[b]\*[c]*[d][a]\*[b]*[c]\*[d]
Pattern: [a]*[b]*[c]*[d][a]*[b]*[c]*[d]
Pattern: [b][c][d][a][b][c][d]
Which matches the example in https://docs.asciidoctor.org/asciidoc/latest/subs/prevent/#escape-with-backslashes
[a-z]*-[a-z]*
is rendered as-[a-z]
(bold)Should look into escaping the asterix