diff options
| author | Ana Gelez <ana+github@gelez.xyz> | 2024-03-25 14:32:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-25 13:32:02 +0000 |
| commit | 2efa86cbdf3e60602fe5524aeaa0befdf14eafcf (patch) | |
| tree | 99b72aba2ee47fdc1b20ea714eec826c4179af41 /tests/typ | |
| parent | a33d8bf32208ef0fe8556200dd0c9c5a1ad10c54 (diff) | |
Fix smart quotes in PDF outline (#3790)
Diffstat (limited to 'tests/typ')
| -rw-r--r-- | tests/typ/bugs/3662-pdf-smartquotes.typ | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/typ/bugs/3662-pdf-smartquotes.typ b/tests/typ/bugs/3662-pdf-smartquotes.typ new file mode 100644 index 00000000..36dc8a15 --- /dev/null +++ b/tests/typ/bugs/3662-pdf-smartquotes.typ @@ -0,0 +1,12 @@ +// Smart quotes were not appearing in the PDF outline, because they didn't +// implement `PlainText` +// https://github.com/typst/typst/issues/3662 + +--- += It's "Unnormal Heading" += It’s “Normal Heading” + +#set smartquote(enabled: false) += It's "Unnormal Heading" += It's 'single quotes' += It’s “Normal Heading”
\ No newline at end of file |
