mirror of
https://github.com/danog/gojekyll.git
synced 2025-01-22 17:51:25 +01:00
Update README.md
This commit is contained in:
parent
2b6bf8df38
commit
b97c925b9f
11
README.md
11
README.md
@ -97,7 +97,7 @@ Missing features:
|
||||
- Liquid filter `sassify` is not implemented
|
||||
- Liquid is run in strict mode: undefined filters and variables are errors.
|
||||
- Missing markdown features:
|
||||
- [Attribute lists](https://kramdown.gettalong.org/syntax.html#attribute-list-definitions)
|
||||
- [attribute lists](https://kramdown.gettalong.org/syntax.html#attribute-list-definitions)
|
||||
- [`markdown="span"`, `markdown="block"`](https://kramdown.gettalong.org/syntax.html#html-blocks)
|
||||
- Markdown configuration options
|
||||
|
||||
@ -114,13 +114,12 @@ These will probably not change:
|
||||
By design:
|
||||
|
||||
- Plugins must be listed in the config file, not a Gemfile.
|
||||
- The wrong type in a `_config.yml` is a generally a error.
|
||||
- The wrong type in a `_config.yml` file – for example, a list where a string is expected, or vice versa – is generally an error.
|
||||
- Server live reload is always on.
|
||||
- `serve --watch` (the default) reloads the `_config.yml` and data files too.
|
||||
- `serve` generates pages on the fly; it doesn't write to the file system.
|
||||
- Files are cached in `/tmp/gojekyll-${USER}`, not `./.sass-cache`
|
||||
- Markdown:
|
||||
- `markdown=1` is only processed in Markdown files. This matches the Jekyll documentation, but not its implementation (which also expands markdown inside of `markdown=1` elements inside \*.html files).
|
||||
- `<` and `>` inside markdown is interpreted as HTML. For example, `This is <b>bold</b>` renders as <b>bold</b>. This behavior matches the [Markdown spec](https://daringfireball.net/projects/markdown/syntax#html), but differs from Jekyll's default Kramdown processor.
|
||||
- The autogenerated id of a header that includes HTML is computed from the text of the title, ignoring its attributes. For example, the id of `## Title (<a href="https://example.com/path/to/details">ref</a>))` is `#title-ref`, not `#title-https-example-path-to-details-ref`.
|
||||
|
||||
@ -143,7 +142,7 @@ Muzukashii:
|
||||
- [ ] Customization
|
||||
- [x] Templates
|
||||
- [ ] Jekyll filters
|
||||
- [ ] `group_by_exp` and `scssify`
|
||||
- [ ] `scssify`
|
||||
- [x] everything else
|
||||
- [x] Jekyll tags
|
||||
- [x] Includes
|
||||
@ -157,8 +156,8 @@ Muzukashii:
|
||||
- [ ] Commands
|
||||
- [x] `build`
|
||||
- [x] `--source`, `--destination`, `--drafts`, `--future`, `--unpublished`
|
||||
- [x] `--incremental`, `--watch`, `--force_polling`
|
||||
- [ ] `--baseurl`, `--config`, `--lsi`, `JEKYLL_ENV=production`
|
||||
- [x] `--incremental`, `--watch`, `--force_polling`, `JEKYLL_ENV=production`
|
||||
- [ ] `--baseurl`, `--config`, `--lsi`
|
||||
- [ ] `--limit-posts`
|
||||
- [x] `clean`
|
||||
- [x] `help`
|
||||
|
Loading…
x
Reference in New Issue
Block a user