aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2024-12-02 01:28:38 -0500
committerRob Austein <sra@hactrn.net>2024-12-02 01:28:57 -0500
commitde8f08aef52e2db4e3cdd1a04e642e57ffab7cb8 (patch)
tree4bcb483171e6bc6dc307a297f5469e7319b14a18
parenta4787fcbddaf95e80c0737864fc7b2c03fd2dd32 (diff)
Enable markdown tablesHEADmaster
-rw-r--r--content/BerlinWorkshop.md8
-rw-r--r--pelicanconf.py12
2 files changed, 16 insertions, 4 deletions
diff --git a/content/BerlinWorkshop.md b/content/BerlinWorkshop.md
index 5733712..bcfa3fb 100644
--- a/content/BerlinWorkshop.md
+++ b/content/BerlinWorkshop.md
@@ -18,8 +18,9 @@ Alpha Board cost: if you are an alpha tester and plan to take an alpha board hom
## Draft Agenda
### Friday 15 July
+| When | What
+| ---- | ----
| 0830 | Coffee
-|---|
| 0930 | Introductions, setup
| 1000 | Presentation of the cryptech alpha device
| | - cryptech overview (attachment:2016-07-15-berlin-main.pdf)
@@ -37,10 +38,10 @@ Alpha Board cost: if you are an alpha tester and plan to take an alpha board hom
| 1530 | Hands-on testing continues
| 1700 | Finish day one
-
### Saturday 16 July
+| When | What
+| ---- | ----
| 0900 | Hands-on testing continues
-|---|
| 1030 | Coffee break
| 1100 | Workshop wrap-up
| | - outstanding questions
@@ -48,7 +49,6 @@ Alpha Board cost: if you are an alpha tester and plan to take an alpha board hom
| | - opportunity to articulate what participants will need that isn't readily available
| 1300 | Finish
-
## What you need to bring
During the workshop you will have access to the cryptech platform using
a PKCS11 interface (reviewing PKCS11 might be a good way to prepare for
diff --git a/pelicanconf.py b/pelicanconf.py
index e85d4e1..c974eb5 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -64,3 +64,15 @@ ARTICLE_URL = "{slug}"
ARTICLE_SAVE_AS = "{slug}/index.html"
PAGE_URL = "pages/{slug}"
PAGE_SAVE_AS = "pages/{slug}/index.html"
+
+# Enable Markdown tables support.
+
+MARKDOWN = {
+ "extension_configs": {
+ "markdown.extensions.codehilite": {"css_class": "highlight"},
+ "markdown.extensions.extra": {},
+ "markdown.extensions.meta": {},
+ "markdown.extensions.tables": {},
+ },
+ "output_format": "html5",
+}