mirror of
https://github.com/cosmocode/dokuwiki-plugin-prosemirror.git
synced 2025-07-29 15:10:53 +00:00
feat: add support for nowiki syntax
This commit is contained in:
10
renderer.php
10
renderer.php
@ -524,6 +524,16 @@ class renderer_plugin_prosemirror extends Doku_Renderer {
|
||||
if(isset($this->marks['underline'])) unset($this->marks['underline']);
|
||||
}
|
||||
|
||||
|
||||
/** @inheritDoc */
|
||||
function unformatted($text)
|
||||
{
|
||||
$this->marks['unformatted'] = 1;
|
||||
parent::unformatted($text);
|
||||
unset($this->marks['unformatted']);
|
||||
}
|
||||
|
||||
|
||||
#endregion formatter marks
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user