Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
mimoo committed Oct 16, 2024
1 parent 7158b91 commit 98647be
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_n_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Check for Changes
name: Build and Deploy

permissions:
contents: write
Expand Down
2 changes: 2 additions & 0 deletions md2respec.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions source/starknet/channel.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
title: "Starknet Channel"
abstract: "TKTK"
sotd: "none"
shortName: "starknet-channel"
editor: "David Wong"
---

## Overview
Expand Down
2 changes: 2 additions & 0 deletions source/starknet/fri.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ abstract: "<p>The <strong>Fast Reed-Solomon Interactive Oracle Proofs of Proximi
<aside class=\"note\">Specifically, it matches the [integrity verifier](https://github.com/HerodotusDev/integrity/tree/main/src) which is a Cairo implementation of a Cairo verifier. There might be important differences with the Cairo verifier implemented in C++ or Solidity.</aside>"
sotd: "none"
shortName: "starknet-fri"
editor: "David Wong"
---

## Overview
Expand Down
2 changes: 2 additions & 0 deletions source/starknet/stark.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 2 additions & 15 deletions template.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,6 @@
<meta charset="utf-8" />
<title>$title</title>
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove" defer></script>
<!-- <script>
MathJax = {
tex: {
inlineMath: [
['\\(', '\\)'],
],
displayMath: [
['\\[', '\\]']
],
}
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> -->

<!-- syntax highlighting -->
<script class='remove'>
Expand Down Expand Up @@ -70,12 +57,12 @@
license: "cc0",
editors: [
{
name: "David Wong",
name: "$editor",
url: "https://www.zksecurity.xyz",
},
],
github: "zksecurity/RFCs",
shortName: "starknet-fri",
shortName: "$shortName",
};
</script>

Expand Down

0 comments on commit 98647be

Please sign in to comment.