In the blog, you can find most recent updates. To keep yourself update, please visit the blog often
Markdown Basicsβ
Learn some basic markdown tricks to make your documentation fly! As a game developer, you will need to learn to write some basic documentation.
Nowadays, using markdown is very convenient and it can result in beautiful tech documentation for everyone around the world.
The following a list of basic markdown syntax you probably should know π
Headingsβ
#### HEADING 4
##### HEADING 5
HEADING 4β
HEADING 5β
Listsβ
Unordered list
- item 1
- item 2
- item 1
- item 2
Ordered list
1. item 1
2. item 2
- item 1
- item 2
Linksβ
Use the following to add links
Click [Link Text](https://imini.app) to visit imini
Click Link Text to visit imini
Imagesβ
Use the following to add images Just Do This:
![Some Fat Dinosaur](/img/docusaurus.png)
Code blocksβ
You can use the following to add code blocks. And it can be highlighted for different types
javascriptβ
```js
const abc
```
Result:
const abc
Pythonβ
```python
a = 10
b = 10
if a > b:
print('good')
```
Result:
a = 10
b = 10
if a > b:
print('good')
MDXβ
You can use javascript directly inside the MD. Like the example below
<button onClick={() => alert('Docusarus incoming, run away! Oh no He Got You!')}>Click me!</button>
Tip/Warningβ
You can use the following to add a tip
:::tip TIP!!!
A Useful Tip π
:::
A Useful Tip π
You can use the following to add a warning
:::danger WARNINGπ¦΄
Warning stuffs go here
:::
Warning stuffs go here