diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-02-17 21:10:11 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-02-17 21:10:11 -0400 |
commit | 5deabd42ad8ca2fc049a4ccb24a7892b0dcc7356 (patch) | |
tree | 8c7f5b9293db7473b3e1af6941447a0298731831 /test | |
parent | 08657e2d05c5a375112222cd0aa6bc291bca542d (diff) |
test: transformContent: escaping tests (snapshot)
Diffstat (limited to 'test')
-rw-r--r-- | test/snapshot/transformContent.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/snapshot/transformContent.js b/test/snapshot/transformContent.js index 740d94df..87e337e4 100644 --- a/test/snapshot/transformContent.js +++ b/test/snapshot/transformContent.js @@ -109,6 +109,23 @@ testContentFunctions(t, 'transformContent (snapshot)', async (t, evaluate) => { `Neat listing: [[string:listingPage.listAlbums.byDate.title]]`); quickSnapshot( + 'basic markdown', + `Hello *world!* This is **SO COOL.**`); + + quickSnapshot( + 'escape entire tag', + `\\[[album:cool-album|spooky]] [[album:cool-album|scary]]`); + + quickSnapshot( + 'escape end of tag', + `My favorite album is [[album:cool-album|[Tactical Omission\\]]].\n` + + `Your favorite album is [[album:cool-album|[Tactical Wha-Huh-Now]]].`); + + quickSnapshot( + 'escape markdown', + `What will it be, *ye fool?* \\*arr*`); + + quickSnapshot( 'lyrics - basic line breaks', `Hey, ho\n` + `And away we go\n` + |