lua_func archetype, fix displaying of articles
This commit is contained in:
parent
c70fc2403c
commit
f485daaed5
7 changed files with 24 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "{{ replace .Name "-" " " | title }}"
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
date: {{ .Date }}
|
date: {{ .Date }}
|
||||||
draft: true
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
15
archetypes/lua_func.md
Normal file
15
archetypes/lua_func.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
---
|
||||||
|
|
||||||
|
# `{{ .Name }}` – {{ short_description }}
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
{{ .Name }}(required, [optional]) <!-- type these in manually -->
|
||||||
|
<!--
|
||||||
|
optional arguments are written in square brackets
|
||||||
|
|
||||||
|
below you can add examples
|
||||||
|
--->
|
|
@ -1,2 +1,6 @@
|
||||||
|
---
|
||||||
|
title: 'List of Lua Functions'
|
||||||
|
---
|
||||||
|
|
||||||
Some commands might have documentation on the [Smashing Tech Wiki](https://antifandom.com/smashhitlab/wiki/List_of_Lua_Functions)
|
Some commands might have documentation on the [Smashing Tech Wiki](https://antifandom.com/smashhitlab/wiki/List_of_Lua_Functions)
|
||||||
|
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
Some commands might have documentation on the [Smashing Tech Wiki](https://antifandom.com/smashhitlab/wiki/List_of_Lua_Functions)
|
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
---
|
||||||
|
title: 'mgCameraShake'
|
||||||
|
---
|
||||||
|
|
||||||
# `mgCameraShake` – used to visually shake camera
|
# `mgCameraShake` – used to visually shake camera
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
body {
|
body {
|
||||||
background-color: #101012;
|
background-color: #101012;
|
||||||
color: white;
|
color: white;
|
||||||
font-family: monospace;
|
font-family: sans-serif;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue