diff --git a/.github/workflows/check_n_deploy.yml b/.github/workflows/check_n_deploy.yml index 7f03576..951501a 100644 --- a/.github/workflows/check_n_deploy.yml +++ b/.github/workflows/check_n_deploy.yml @@ -1,4 +1,4 @@ -name: Build and Check for Changes +name: Build and Deploy permissions: contents: write diff --git a/md2respec.py b/md2respec.py index 4e3d171..6c14484 100644 --- a/md2respec.py +++ b/md2respec.py @@ -33,6 +33,8 @@ def convert_markdown_to_html(markdown_file, config): "title": post.get("title", "title not present"), "abstract": post.get("abstract", "abstract not present"), "sotd": post.get("sotd", "sotd not present"), + "shortName": post.get("shortName", "shortName not present"), + "editor": post.get("editor", "editor not present"), } # Convert Markdown to HTML diff --git a/source/starknet/channel.md b/source/starknet/channel.md index e49e41c..3974790 100644 --- a/source/starknet/channel.md +++ b/source/starknet/channel.md @@ -2,6 +2,8 @@ title: "Starknet Channel" abstract: "TKTK" sotd: "none" +shortName: "starknet-channel" +editor: "David Wong" --- ## Overview diff --git a/source/starknet/fri.md b/source/starknet/fri.md index cdcb2a2..e4ac7e5 100644 --- a/source/starknet/fri.md +++ b/source/starknet/fri.md @@ -6,6 +6,8 @@ abstract: "
The Fast Reed-Solomon Interactive Oracle Proofs of Proximi
"
sotd: "none"
+shortName: "starknet-fri"
+editor: "David Wong"
---
## Overview
diff --git a/source/starknet/stark.md b/source/starknet/stark.md
index 6fd7625..1c90cca 100644
--- a/source/starknet/stark.md
+++ b/source/starknet/stark.md
@@ -2,6 +2,8 @@
title: "Starknet STARK Verifier"
abstract: "In this document we specify the STARK verifier used in Starknet."
sotd: "none"
+shortName: "starknet-stark"
+editor: "David Wong"
---
## Overview
diff --git a/template.html b/template.html
index 3c0941e..8bbdf37 100644
--- a/template.html
+++ b/template.html
@@ -5,19 +5,6 @@