Fix missed code (#530)

Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
mrdrogdrog 2020-09-02 21:57:31 +02:00 committed by GitHub
parent 0e912d64dd
commit 0fecda027c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -13,7 +13,7 @@
# ide
.idea
!.idea/dictionaries/codimd.xml
!.idea/dictionaries/hedgedoc.xml
# misc
.DS_Store

View file

@ -3,6 +3,6 @@ import { ComponentReplacer } from '../ComponentReplacer'
export class LinemarkerReplacer extends ComponentReplacer {
public getReplacement (codeNode: DomElement, index: number): null | undefined {
return codeNode.name === 'codimd-linemarker' ? null : undefined
return codeNode.name === 'app-linemarker' ? null : undefined
}
}