Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! fix: Do not escape possible other editors syntax when serializing
  • Loading branch information
juliusknorr committed Jun 18, 2025
commit 7ef7b0033275416864082a6821ed17053ae58f9e
5 changes: 5 additions & 0 deletions src/tests/markdown.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,11 @@ describe('Markdown serializer from html', () => {
test('keep syntax for brackets', () => {
assertKeepSyntax('test [[foo]] bar')
assertKeepSyntax('test ![[foo]] bar')
assertKeepSyntax('test ![[note#^block]] bar')
assertKeepSyntax('test [mytest] foo')
assertKeepSyntax('test [[mytest]] [abc](test) foo')
assertKeepSyntax('test #foo test')
assertKeepSyntax('\\\\[ test')
})
})

Expand Down
Loading