page_status, minor style change
This commit is contained in:
parent
f485daaed5
commit
90a58c28c6
7 changed files with 30 additions and 3 deletions
|
@ -1,9 +1,11 @@
|
||||||
---
|
---
|
||||||
title: "{{ replace .Name "-" " " | title }}"
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
description: "{{ .Description }}"
|
||||||
date: {{ .Date }}
|
date: {{ .Date }}
|
||||||
|
type: "lua_func"
|
||||||
---
|
---
|
||||||
|
|
||||||
# `{{ .Name }}` – {{ short_description }}
|
# `{{ .Name }}` – {{ .Description }}
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
title: 'List of Lua Functions'
|
title: 'List of Lua Functions'
|
||||||
|
layout: 'list'
|
||||||
---
|
---
|
||||||
|
|
||||||
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,3 +1,6 @@
|
||||||
|
---
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
# `{{ cmd }}` – {{ short_description }}
|
# `{{ cmd }}` – {{ short_description }}
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
title: 'mgCameraShake'
|
title: 'mgCameraShake'
|
||||||
|
description: 'used to visually shake the camera'
|
||||||
|
layout: 'LuaFunctions'
|
||||||
|
page_status: 'stub'
|
||||||
---
|
---
|
||||||
|
|
||||||
# `mgCameraShake` – used to visually shake camera
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
baseURL = 'http://example.org/'
|
baseURL = 'http://example.org/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = 'Granny Smith Technical'
|
title = 'Granny Smith Technical'
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
# category = 'categories'
|
||||||
|
page_status = 'page_status'
|
||||||
|
# tag = 'tags'
|
||||||
|
|
||||||
|
|
9
layouts/_default/LuaFunctions.html
Normal file
9
layouts/_default/LuaFunctions.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<article>
|
||||||
|
<a href="..">go up</a>
|
||||||
|
<header>
|
||||||
|
<h1><code>{{ .Title }}</code> – {{ .Description }}</h1>
|
||||||
|
</header>
|
||||||
|
{{ .Content }}
|
||||||
|
</article>
|
||||||
|
{{ end }}
|
|
@ -11,6 +11,11 @@ nav {
|
||||||
box-shadow: 0px 5px 15px #121212;
|
box-shadow: 0px 5px 15px #121212;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pre > code {
|
||||||
|
padding: 10px;
|
||||||
|
font-size: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
nav a {
|
nav a {
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
|
|
Loading…
Reference in a new issue