nomadjimbob / mikio

Customizable, Bootstrap 4 inspired template for Dokuwiki
GNU General Public License v2.0
22 stars 6 forks source link

Editing a section of a page corrupts the remainder of the markup #3

Closed nomadjimbob closed 4 years ago

nomadjimbob commented 4 years ago

As per the title.

Editing the entire page works fine.

nomadjimbob commented 4 years ago

This is caused by the simple_html_dom library

contains the post content of the page and includes new line characters. simple_html_dom mangles this value by removing the new line characters from the value

nomadjimbob commented 4 years ago

Modified the library by commenting out lines 2112-2114 in the parse_attr function

$value = str_replace("\r", '', $value); $value = str_replace("\n", '', $value);