--- title: Example Title date: 2222-01-01 00:00:00 -0000 # YYYY-MM-DD HH:MM:SS +/-TTTT of post release last_modified_at: 2222-01-01 00:00:00 -0000 # YYYY-MM-DD HH:MM:SS +/-TTTT of modification categories: [Aurora 4x, tutorials] tags: [Aurora 4x, awesome spaceship guide] author: John Doe # authors: [John Doe, Jane Doe] # Make sure to add all authors to _data/authors.yml if you would like to link to your page when your name is clicked. # Only uncomment the below if you wish to use an alternate license for your post. # layout: alt_post # license: # name: Example Alternate License # link: https://example.org # Image preview at the top of the post Crops and scales to: 1200 x 630 # image: # path: /path/to/image # alt: image alternative text # LQIP (Low Quality Image Placeholders) if you wish to use it # lqip: /path/to/lqip-file # or base64 URI # To hide table of contents # toc: false # To disable comments # comments: false # To enable math formatting # math: true # To enable mermaid formatting https://github.com/mermaid-js/mermaid # mermaid: true # Define an image path, I was too lazy to do this in my posts but if anyone wants to update it feel free to # img_path: /img/path/ --- Portions of this file are modified from https://chirpy.cotes.page/posts/write-a-new-post/, https://chirpy.cotes.page/posts/text-and-typography/, https://jekyllrb.com/docs/posts/, and https://www.markdownguide.org/basic-syntax/. See those website for more detailed formatting info. Use markdown for posts. Headings # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 Lists 1. one 2. two 3. three - bullet point - indented bullet point - double indented bullet point - [ ] To do + [x] Step 1 + [x] Step 2 + [ ] Step 3 Thing : Description of thing > Block quote. ## Tables | Person | Name | Location | |:---------|:---------|----------:| | Person 1 | John Doe | Somewhere | | Person 2 | Jane Doe | There | | Person 3 | 7w1 | Here | [Example Link](https://example.com) [Example Link that opens in a new tab](https://example.com){:target="_blank"} Prompts > Example line for prompt. {: .prompt-tip } > Example line for prompt. {: .prompt-info } > Example line for prompt. {: .prompt-warning } > Example line for prompt. {: .prompt-danger } Footnotes Words words words footnote[^footnote1]. Footnote2[^footnote2]. Images ![img-description](/path/to/image) _Image Caption_ Alignment & Size ![Desktop View](/path/to/image){: width="600" height="300" } ![Desktop View](/path/to/image){: .normal } ![Desktop View](/path/to/image){: .left } ![Desktop View](/path/to/image){: .right } Different images for light/dark mode ![Light mode only](/path/to/light-mode.png){: .light } ![Dark mode only](/path/to/dark-mode.png){: .dark } LQIP for normal images ![Image description](/path/to/image){: lqip="/path/to/lqip-file" } Code snippets `inline code part` `/path/to/file.extension`{: .filepath} ``` Plaintext snippet. ``` Specifying language and hiding line numbers ```yaml key: value ``` {: .nolineno } To replace the language with a file name ```yaml key: value ``` {: file="path/to/file" } Mathematics Powered by [MathJax](https://www.mathjax.org/) $$ \sum_{n=1}^\infty 1/n^2 = \frac{\pi^2}{6} $$ Mermaid: I don't know how to use this, check out [this](https://mermaid.live). Videos {% include embed/{Platform}.html id='{ID}' %} [^footnote1]: Footnote 1 [^footnote2]: Footnote 2