You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download and install Hugo Extended, either via the [releases page](https://github.com/gohugoio/hugo/releases) or by using
6
+
```
7
+
winget install Hugo.Hugo.Extended
8
+
```
9
+
And that's it! No other dependencies needed! Hugo Extended comes with Sass support for css and we use *raw* JavaScript for our needs, which is kind of a cleansing experience...
10
10
11
11
## Contributing
12
12
Want to add new pages and guides? Add a markdown file into the content folder and choose a subdirectory. The html will be automatically generated.
13
13
14
14
You may also use the command `hugo new <filename>.md` or `hugo new <directory>/<filename>.md` to let hugo initialize a new file with a template.
15
15
16
-
### HTML in markdown
17
-
To add html to your markdown simply encase the tags with `{{<rawhtml>}}`
18
-
```html
19
-
{{<rawhtml>}}
20
-
<p> Your html code here! <p>
21
-
{{</rawhtml>}}
22
-
```
16
+
### Shortcodes
17
+
Our custom template features a bunch of shortcodes
18
+
A list is available on the [Wiki](https://github.com/MinecraftTAS/minecrafttas.com/wiki/Shortcodes)
23
19
24
20
## Generating
25
21
Running `hugo` will generate the html files in the `public/` directory
0 commit comments