Website
Posts
Attribute | Format | Description |
---|---|---|
title | string | The title of the post. |
published | yyyy/mm/dd | The date the post was published. |
description | boolean | A short description of the post. Displayed on index page. |
image | path | The cover image path of the post. 1. Start with http:// or https:// : Use web image2. Start with / : For image in public dir3. With none of the prefixes: Relative to the markdown file |
hideimage | boolean | Whether to hide the cover image on the post page (defaults to false) |
tags | string[] | The tags of the post. |
category | string | The category of the post. |
draft | boolean | If this post is still a draft, which won’t be displayed. |
Markdown
Code Blocks
Attribute | Options | Description |
---|---|---|
title= | string | The name of the script. You can include the extension or not |
{ } | int-int | The area to highlight |
ins={ } | int-int | The area to highlight as inserted, similar to git diffs |
del={ } | int-int | The area to highlight as deleted, similar to git diffs |
frame= | auto none code terminal | The frame styling |
showLineNumbers | bool | Whether or not to show the line numbers. You don’t need to add equals or the boolean as it defaults to false. So you can just add showLineNumbers |
startLineNumber= | int | The number in which the code snippets start at |
This is an example of diff ins
and del
, with the framing being set to code
This is an example of highlighting { }
, with the framing being set to terminal
, and with showLineNumbers
and startLineNumber=
set to 5
Tables
Add the following script to the top of the post
Video
- Keep aspect
- add to tag
class="keepaspect"
- add to tag
- Adding Google Drive video
- Replace
FILEID
with the video’s id
- Replace
Images
Add the following at the top
Or if you want a single image
Unity WebGL Embed
- Add game to
/src/games/
- Rename
index.html
toindex.astro
Creating a New Page
// TODO. Automate this!
- Add to LinkPreset in
src\config.ts
- Add to LinkPreset in
src\types\config.ts
- Add to LinkPresets in
src\constants\link-presets.ts
Add the translation within the ‘en.ts’ file
- You can do this with all the translations if you’d like… I’m lazy
Add to
i18nKey.ts
Create an astro file within
src\pages\
src\pages\test.astro
Paste the following code into it. Making sure to change the names
- Create a markdown file within
src\content\addhere
src\content\addhere\addhere.md
- You’re done!!!
- Hopefully you remember you have this here as a reference!
GitHub repository cards
You can add dynamic cards that link to GitHub repositories, on page load, the repository information is pulled from the GitHub API.
Create a GitHub repository card with the code ::github{repo="<owner>/<repo>"}
.
Admonitions
Following types of admonitions are supported: note
tip
important
warning
caution
NOTEHighlights information that users should take into account, even when skimming.
TIPOptional information to help a user be more successful.
IMPORTANTCrucial information necessary for users to succeed.
WARNINGCritical content demanding immediate user attention due to potential risks.
CAUTIONNegative potential consequences of an action.
The title of the admonition can be customized.
MY CUSTOM TITLEThis is a note with a custom title.
TIPThe GitHub syntax is also supported.