feat: add support for nowiki syntax

This commit is contained in:
Michael Große
2018-01-29 14:38:48 +01:00
parent cd0b5d42c4
commit ad2728f929
5 changed files with 85 additions and 2 deletions

View File

@ -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
}