You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for the plugin. As it shows the xhtml renderer has changed, in particular many methods now accept an extra boolean argument $returnonly where the expected result is that they don't add to $this->doc but rather return the generated snippet directly to the caller without adding to $this->doc, e.g. `header()':
/**
...
* @param bool $returnonly whether to return html or write to doc attribute
....
*/
public function header($text, $level, $pos, $returnonly = false) {
...
if ($returnonly) {
return $header;
} else {
$this->doc .= $header;
}
}
The text was updated successfully, but these errors were encountered:
Hi, thanks for the plugin. As it shows the xhtml renderer has changed, in particular many methods now accept an extra boolean argument
$returnonly
where the expected result is that they don't add to$this->doc
but rather return the generated snippet directly to the caller without adding to$this->doc
, e.g. `header()':The text was updated successfully, but these errors were encountered: