Skip to content

v4.2.0

Compare
Choose a tag to compare
@cossssmin cossssmin released this 28 Sep 12:45
· 585 commits to master since this release

Added

Added a <not-plaintext> tag that you can use to discard content from a plaintext version while still keeping it in the HTML.

<div>Show everywhere</div>
<plaintext>Show in plaintext</plaintext>
<not-plaintext>
  <p>Show only in HTML</p>
</not-plaintext>

Plaintext:

Show everywhere
Show in plaintext

HTML:

<div>Show everywhere</div>
<p>Show only in HTML</p>

Fixed

Fixed an issue where plaintext: true in a template's Front Matter was not generating the plaintext file (#707, 254490e)

v4.1.2...v4.2.0