@@ -77,6 +77,12 @@ Reach out to <admin@trustedcomputinggroup> with any questions about this documen
7777
7878# Scope and Purpose
7979
80+ ::: Note :::
81+ This document demonstrates the TCG Pandoc toolset, which automatically adds
82+ "TCG Confidential" at the bottom of all drafts. This document is itself not TCG
83+ Confidential because it is a part of an open-source repository.
84+ ::::::::::::
85+
8086The purpose of this guide is to demonstrate the usage of Markdown-plus-GitHub
8187document-authorship flows for TCG workgroup usage.
8288
@@ -877,6 +883,14 @@ Use the `.plain` class to avoid drawing any lines or background shading.
877883This is useful when you want to present some tabular text without styling it
878884like "an actual table".
879885
886+ ```md
887+ : {.plain}
888+
889+ ----- -----
890+ like this
891+ ----- -----
892+ ```
893+
880894: {.plain}
881895
882896----- -----
@@ -988,16 +1002,24 @@ we recommend using the functions `\mathbf` (for functions) and `\mathit` (for id
9881002This avoids strange kerning issues where a string is treated as a product of single-character symbols, like in @eq:hmac-iso-bad-kerning:
9891003
9901004```md
991- $$ \mathbf{HMAC}(K, \mathit{someTEXT}) \coloneq H((\bar{K} \oplus \mathit{OPAD}) \Vert H((\bar{K} \oplus \mathit{IPAD}) \Vert \mathit{someTEXT})) $$ {#eq:hmac-iso}
1005+ $$ \mathbf{HMAC}(K, \mathit{someTEXT}) \coloneq H((\bar{K} \oplus \mathit{OPAD}) \parallel H((\bar{K} \oplus \mathit{IPAD}) \parallel \mathit{someTEXT})) $$ {#eq:hmac-iso}
9921006```
9931007
994- $$ \mathbf{HMAC}(K, \mathit{someTEXT}) \coloneq H((\bar{K} \oplus \mathit{OPAD}) \Vert H((\bar{K} \oplus \mathit{IPAD}) \Vert \mathit{someTEXT})) $$ {#eq:hmac-iso}
1008+ $$ \mathbf{HMAC}(K, \mathit{someTEXT}) \coloneq H((\bar{K} \oplus \mathit{OPAD}) \parallel H((\bar{K} \oplus \mathit{IPAD}) \parallel \mathit{someTEXT})) $$ {#eq:hmac-iso}
1009+
1010+ ```md
1011+ $$ HMAC(K, someTEXT) \coloneq H((\bar{K} \oplus OPAD) \parallel H((\bar{K} \oplus IPAD) \parallel someTEXT)) $$ {#eq:hmac-iso-bad-kerning}
1012+ ```
1013+
1014+ $$ HMAC(K, someTEXT) \coloneq H((\bar{K} \oplus OPAD) \parallel H((\bar{K} \oplus IPAD) \parallel someTEXT)) $$ {#eq:hmac-iso-bad-kerning}
1015+
1016+ You can use Unicode characters to make equations a little more readable in plain-text:
9951017
9961018```md
997- $$ HMAC(K, someTEXT) \coloneq H((\bar{K} \oplus OPAD) \Vert H((\bar{K} \oplus IPAD) \Vert someTEXT)) $$ {#eq:hmac-iso-bad-kerning }
1019+ $$ \mathbf{ HMAC} (K, \mathit{ someTEXT}) := H((\bar{K} ⊕ \mathit{ OPAD} ) \parallel H((\bar{K} ⊕ \mathit{ IPAD} ) \parallel \mathit{ someTEXT} )) $$ {#eq:hmac-unicode }
9981020```
9991021
1000- $$ HMAC(K, someTEXT) \coloneq H((\bar{K} \oplus OPAD) \Vert H((\bar{K} \oplus IPAD) \Vert someTEXT)) $$ {#eq:hmac-iso-bad-kerning }
1022+ $$ \mathbf{ HMAC} (K, \mathit{ someTEXT}) := H((\bar{K} ⊕ \mathit{ OPAD} ) \parallel H((\bar{K} ⊕ \mathit{ IPAD} ) \parallel \mathit{ someTEXT} )) $$ {#eq:hmac-unicode }
10011023
10021024# Advanced Features
10031025
0 commit comments