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:
@@ -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'],
|
||||||
|
|||||||
Reference in New Issue
Block a user