641849b70a
We need quotes if `[` or `{` or `'` is at the beginning of the line, but not otherwise.
13 lines
173 B
Markdown
13 lines
173 B
Markdown
Make sure metadata values are treated as strings,
|
|
and properly escaped.
|
|
|
|
```
|
|
% pandoc -t markdown -s -M title="<this> *that*"
|
|
ok
|
|
^D
|
|
---
|
|
title: \<this\> \*that\*
|
|
---
|
|
|
|
ok
|
|
```
|