Error messages: use single quotes around paths and format names.

Closes #11645.
This commit is contained in:
John MacFarlane
2026-05-13 17:15:34 +02:00
parent 4e3707543b
commit b43762cdc4
4 changed files with 31 additions and 28 deletions
+2 -2
View File
@@ -48,13 +48,13 @@ Pandoc
% pandoc -s -t native --data-dir=command/5876 --metadata-file=does-not-exist.yaml
Hello
^D
2> Could not find metadata file does-not-exist.yaml
2> Could not find metadata file 'does-not-exist.yaml'
=> 98
```
```
% pandoc -s -t native --metadata-file=does-not-exist.yaml
Hello
^D
2> Could not find metadata file does-not-exist.yaml
2> Could not find metadata file 'does-not-exist.yaml'
=> 98
```
+1 -1
View File
@@ -2,6 +2,6 @@
% pandoc -s -t native --data-dir=command/7861 --metadata-file=../../7861.yaml
Hello
^D
2> Could not find metadata file ../../7861.yaml
2> Could not find metadata file '../../7861.yaml'
=> 98
```