Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-05-16 | Markdown writer: fewer unneeded escapes for `#`. | John MacFarlane | 1 | -1/+1 | |
See #6259. | |||||
2020-10-08 | Be less aggressive about using quotes for YAML values. | John MacFarlane | 1 | -1/+1 | |
We need quotes if `[` or `{` or `'` is at the beginning of the line, but not otherwise. | |||||
2020-10-07 | Use double quotes for YAML metadata. | John MacFarlane | 1 | -1/+1 | |
Closes #6727. | |||||
2017-08-12 | Escape MetaString values (as added with --metadata flag). | John MacFarlane | 1 | -0/+13 | |
Previously they would be transmitted to the template without any escaping. Note that `--M title='*foo*'` yields a different result from --- title: *foo* --- In the latter case, we have emphasis; in the former case, just a string with literal asterisks (which will be escaped in formats, like Markdown, that require it). Closes #3792. |