markup/goldmark: Make auto IDs GitHub compatible
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 4 Jan 2020 10:28:19 +0000 (11:28 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 4 Jan 2020 18:46:01 +0000 (19:46 +0100)
commita82d2700fcc772aada15d65b8f76913ca23f7404
treefa1c09eb1523d7cda303982b5c08661af9a194d6
parentae816452b171b6b6aabca6a7423ed28a653baaa2
markup/goldmark: Make auto IDs GitHub compatible

You can turn off this behaviour:

```toml
[markup]
  [markup.goldmark]
    [markup.goldmark.parser]
      autoHeadingIDAsciiOnly = true
```
Note that the `anchorize` now adapts its behaviour depending on the default Markdown handler.

Fixes #6616
12 files changed:
common/text/transform.go [new file with mode: 0644]
common/text/transform_test.go [new file with mode: 0644]
helpers/content.go
helpers/path.go
markup/blackfriday/convert.go
markup/converter/converter.go
markup/goldmark/autoid.go [new file with mode: 0644]
markup/goldmark/autoid_test.go [new file with mode: 0644]
markup/goldmark/convert.go
markup/goldmark/convert_test.go
markup/goldmark/goldmark_config/config.go
tpl/urls/urls.go