Journal Entries
From Google Docs
Copy-paste the content in normally and then immediately use TinyMCE’s “Clear formatting” button. Re-apply important styling such as bold text and then run the Regex below.
Make sure that you also remove any unwanted non-breaking spaces (
) and single right quotation marks ('
) being used instead of apostrophes.
Install the World Smiths Toolkit module and use it to add colorful blocks where appropriate.
Use the highlights
block for something you want to bring focus to.
Regex
Cleanup
Remove unwanted HTML attributes:
/( aria-level="1"| dir="ltr"| role="presentation"| |<span style="([^"]*)">|<\/span>)/gm
Quotes
Replace tables with blockquotes:
<div align="left">
<table><colgroup><col \/><\/colgroup>
<tbody>
<tr>
<td>
<p>(?'contents'.*)<\/p>
<\/td>
<\/tr>
<\/tbody>
<\/table>
<\/div>
replace:
<blockquote><p>$contents</p></blockquote>
Fixed Table
Remove fixed table widths and heights:
<t(?'a'\w) style="(height|width): \d{1,2}px;">
<t$a>