1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +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. ', ' '], [' 1. ', ' '],
[' 2. ', ' '], [' 2. ', ' '],
[' 10. ', ' '], [' 10. ', ' '],
["\t- ", "\t"], ['\t- ', '\t'],
['- ', ''], ['- ', ''],
// Header with using line // Header with using line
["\n==", "\n"], ['\n==', '\n'],
["\n===", "\n"], ['\n===', '\n'],
["test\n===", "test\n"], ['test\n===', 'test\n'],
// Code block // Code block
["```test\n", ''], ['```test\n', ''],
["```test\nhoge", 'hoge'], ['```test\nhoge', 'hoge'],
// HTML tag // HTML tag
['<>', ''], ['<>', ''],
['<test>', 'test'], ['<test>', 'test'],