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

Fix some pointed by eslint

This commit is contained in:
asmsuechan
2017-11-07 14:44:50 +09:00
parent 13a1da91be
commit 990d7edba4
2 changed files with 3 additions and 4 deletions

View File

@@ -179,11 +179,10 @@ const markdown = {
const renderedContent = md.render(content) const renderedContent = md.render(content)
return renderedContent return renderedContent
}, },
<<<<<<< HEAD
strip, strip,
normalizeLinkText normalizeLinkText
======= return md.render(content)
>>>>>>> refactor: fix to use cut off file }
} }
export default markdown export default markdown

View File

@@ -35,5 +35,5 @@ export function strip (input) {
} }
export default { export default {
strip, strip
} }