mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
changed the SCRIPT_END_PLACEHOLDER regex to case insensitive
this was suggested by @TobiasHoll in https://github.com/hackmdio/codimd/issues/1648 Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
35b0d39a12
commit
1546786c63
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ import { md } from './extra'
|
||||||
|
|
||||||
// prevent script end tags in the content from interfering
|
// prevent script end tags in the content from interfering
|
||||||
// with parsing
|
// with parsing
|
||||||
content = content.replace(/<\/script>/g, SCRIPT_END_PLACEHOLDER)
|
content = content.replace(/<\/script>/gi, SCRIPT_END_PLACEHOLDER)
|
||||||
|
|
||||||
return '<script type="text/template">' + content + '</script>'
|
return '<script type="text/template">' + content + '</script>'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue