mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 10:15:17 -04:00
Fix missed code (#530)
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
parent
0e912d64dd
commit
0fecda027c
2 changed files with 2 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
# ide
|
# ide
|
||||||
.idea
|
.idea
|
||||||
!.idea/dictionaries/codimd.xml
|
!.idea/dictionaries/hedgedoc.xml
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
|
@ -3,6 +3,6 @@ import { ComponentReplacer } from '../ComponentReplacer'
|
||||||
|
|
||||||
export class LinemarkerReplacer extends ComponentReplacer {
|
export class LinemarkerReplacer extends ComponentReplacer {
|
||||||
public getReplacement (codeNode: DomElement, index: number): null | undefined {
|
public getReplacement (codeNode: DomElement, index: number): null | undefined {
|
||||||
return codeNode.name === 'codimd-linemarker' ? null : undefined
|
return codeNode.name === 'app-linemarker' ? null : undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue