hugo/helpers
Derk Muenchhausen f0266e2ef3
Rework external asciidoctor integration
This commit solves the relative path problem with asciidoctor tooling. An include will resolve relatively, so you can refer easily to files in the same folder.

Also `asciidoctor-diagram` and PlantUML rendering works now, because the created temporary files will be placed in the correct folder.

This patch covers just the Ruby version of asciidoctor. The old AsciiDoc CLI EOLs in Jan 2020, so this variant is removed from code.

The configuration is completely rewritten and now available in `config.toml` under the key `[markup.asciidocext]`:

```toml
[markup.asciidocext]
    extensions = ["asciidoctor-html5s", "asciidoctor-diagram"]
    workingFolderCurrent = true
    trace = true
    [markup.asciidocext.attributes]
        my-base-url = "https://example.com/"
        my-attribute-name = "my value"
```

- backends, safe-modes, and extensions are now whitelisted to the popular (ruby) extensions and valid values.
- the default for extensions is to not enable any, because they're all external dependencies so the build would break if the user didn't install them beforehand.
- the default backend is html5 because html5s is an external gem dependency.
- the default safe-mode is safe, explanations of the modes: https://asciidoctor.org/man/asciidoctor/
- the config is namespaced under asciidocext_config and the parser looks at asciidocext to allow a future native Go asciidoc.
- `uglyUrls=true` option and `--source` flag are supported
- `--destination` flag is required

Follow the updated documentation under `docs/content/en/content-management/formats.md`. 
  
This patch would be a breaking change, because you need to correct all your absolute include pathes to relative paths, so using relative paths must be configured explicitly by setting `workingFolderCurrent = true`.
2020-06-25 09:51:33 +02:00
..
content.go helpers: Fix TrimShortHTML 2020-03-28 11:10:25 +01:00
content_test.go helpers: Fix TrimShortHTML 2020-03-28 11:10:25 +01:00
docshelper.go Some minify configuration adjustments 2020-03-20 20:35:57 +01:00
emoji.go Move the emoji parsing to pageparser 2018-12-20 20:08:01 +01:00
emoji_test.go all: Apply staticcheck recommendations 2019-03-24 16:14:51 +01:00
general.go Introduce a tree map for all content 2020-02-18 09:49:42 +01:00
general_test.go Rework external asciidoctor integration 2020-06-25 09:51:33 +02:00
path.go Fix GetPage on section/bundle name overlaps 2020-05-24 12:35:45 +02:00
path_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
pathspec.go Block symlink dir traversal for /static 2019-07-25 11:27:25 +02:00
pathspec_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
processing_stats.go helpers: Fix golint issues 2018-09-07 08:25:51 +02:00
testhelpers_test.go Prepare for Goldmark 2019-11-06 19:09:08 +01:00
url.go all: Apply staticcheck recommendations 2019-03-24 16:14:51 +01:00
url_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00