1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

[Lint] Fix double quatations to single quatations

This commit is contained in:
asmsuechan
2017-05-17 15:04:43 +09:00
parent 5fbb802b32
commit b88b1065ee

View File

@@ -15,15 +15,15 @@ test(t => {
[' 1. ', ' '],
[' 2. ', ' '],
[' 10. ', ' '],
["\t- ", "\t"],
['\t- ', '\t'],
['- ', ''],
// Header with using line
["\n==", "\n"],
["\n===", "\n"],
["test\n===", "test\n"],
['\n==', '\n'],
['\n===', '\n'],
['test\n===', 'test\n'],
// Code block
["```test\n", ''],
["```test\nhoge", 'hoge'],
['```test\n', ''],
['```test\nhoge', 'hoge'],
// HTML tag
['<>', ''],
['<test>', 'test'],