mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 03:06:31 -05: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
|
||||
.idea
|
||||
!.idea/dictionaries/codimd.xml
|
||||
!.idea/dictionaries/hedgedoc.xml
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue