Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: first go at generated AVM instruction set doc #3469

Merged
merged 11 commits into from
Nov 30, 2023
5 changes: 5 additions & 0 deletions yellow-paper/docs/public-vm/InstructionSet.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Instruction Set

import GeneratedInstructionSet from './gen/_InstructionSet.mdx';

<GeneratedInstructionSet />
Empty file.
8 changes: 8 additions & 0 deletions yellow-paper/docs/public-vm/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "AVM: Aztec's Public VM",
"position": 5,
"link": {
"type": "generated-index",
"description": "Aztec's Public VM..."
}
}
1,240 changes: 1,240 additions & 0 deletions yellow-paper/docs/public-vm/gen/_InstructionSet.mdx

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions yellow-paper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"start:dev": "docusaurus start --host 0.0.0.0",
"start": "yarn preprocess && docusaurus start",
"start:dev": "yarn preprocess && docusaurus start --host 0.0.0.0",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"preprocess": "yarn node ./src/preprocess/InstructionSetMarkdownGen.tsx",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc"
Expand All @@ -23,6 +24,7 @@
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "6.0.0",
"rehype-katex": "5",
"remark-math": "3"
},
Expand Down
Loading