</tr>
<tr>
-<td><code><strong>plainIdAnchors</strong></code></td>
+<td><code><strong>plainIDAnchors</strong></code></td>
<td><code>false</code></td>
<td><code>FootnoteAnchorPrefix</code> and <code>HeaderIDSuffix</code></td>
</tr>
</table>
-**Note** that these flags must be grouped under the `blackfriday` key and can be set on **both site and page level**. If set on page, it will override the site setting. Example:
+**Notes**
+
+1. These flags are **very case-sensitive** (as of Hugo v0.15)!
+2. These flags must be grouped under the `blackfriday` key and can be set on **both site and page level**. If set on page, it will override the site setting. Example:
<table class="table">
<thead>
<td style="width: 50%;"><pre><code>[blackfriday]
angledQuotes = true
fractions = false
- plainIdAnchors = true
+ plainIDAnchors = true
extensions = ["hardLineBreak"]
</code></pre></td>
<td><pre><code>blackfriday:
angledQuotes: true
fractions: false
- plainIdAnchors: true
+ plainIDAnchors: true
extensions:
- hardLineBreak
</code></pre></td>
</tr>
</tbody>
-</table>
\ No newline at end of file
+</table>