mirror of https://github.com/Hilbis/Hilbish
docs: add descriptions for terminal and fs libs
parent
9df0c4c0df
commit
4b5fcf24c2
|
@ -1,11 +1,13 @@
|
||||||
---
|
---
|
||||||
name: Module fs
|
name: Module fs
|
||||||
description:
|
description: filesystem interaction and functionality library
|
||||||
layout: apidoc
|
layout: apidoc
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
The fs module provides easy and simple access to filesystem functions
|
||||||
|
and other things, and acts an addition to the Lua standard library's
|
||||||
|
I/O and filesystem functions.
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
### abs(path)
|
### abs(path)
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
name: Module terminal
|
name: Module terminal
|
||||||
description:
|
description: low level terminal library
|
||||||
layout: apidoc
|
layout: apidoc
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
The terminal library is a simple and lower level library for certain terminal interactions.
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
### restoreState()
|
### restoreState()
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// filesystem interaction and functionality library
|
||||||
|
// The fs module provides easy and simple access to filesystem functions
|
||||||
|
// and other things, and acts an addition to the Lua standard library's
|
||||||
|
// I/O and filesystem functions.
|
||||||
package fs
|
package fs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// low level terminal library
|
||||||
|
// The terminal library is a simple and lower level library for certain terminal interactions.
|
||||||
package terminal
|
package terminal
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
Loading…
Reference in New Issue