diff --git a/content/Reading Room/An Introduction to Extitutional Theory.md b/content/Reading Room/An Introduction to Extitutional Theory.md index ba6221c..bf58d77 100644 --- a/content/Reading Room/An Introduction to Extitutional Theory.md +++ b/content/Reading Room/An Introduction to Extitutional Theory.md @@ -2,7 +2,7 @@ title: An Introduction to Extitutional Theory draft: false tags: - - glossary + - article --- ### An Introduction to Extitutional Theory diff --git a/content/index.md b/content/index.md index b1b4778..21daa48 100644 --- a/content/index.md +++ b/content/index.md @@ -37,18 +37,48 @@ The knowledge commons is built on simple [markdown](https://www.markdownguide.or 3. Open the /content folder as a vault in Obsidian Create and Edit content with files and folders within Obsidian -4. Push changes back to Github. -#### Markdown Cheatsheet +4. Request access to push your updates back to [Github](https://github.com/oovg/quartz). +5. Create a pull request from `your-branch-name` to `v4` +6. When accepted, your content will be live on the website. +## Authoring Content + +## Metadata + +Each Markdown file should have the following metadata at the top. + +``` +--- +title: title of content +draft: true or false (true will hide content) +tags: glossary, article, etc +--- +``` + +Example simple glossary entry valid full Markdown file with metadata and content. + +``` +--- +title: term +draft: false +tags: glossary +--- + +**term** + +definition of the term +``` + +#### Markdown Cheatsheet +View a cheat sheet of Markdown formatting. https://www.markdownguide.org/cheat-sheet/ - ### Content Architecture - For now we simply have a Glossary and a Reading Room sections for content. **Glossary:** Create new files, or edit existing ones in the "Glossary" folder **Reading Room:** Add markdown versions of relevant articles, papers, and essays in the "Reading Room" folder to add content here -Feel free to propose new sections of content. \ No newline at end of file +Feel free to propose new sections of content. +