diff options
author | Brendan Coles <bcoles@gmail.com> | 2021-01-04 06:52:57 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-04 18:50:26 +0100 |
commit | 1f03b6ad5726fa3171d6bb10b293d06fdc5b5dc5 (patch) | |
tree | a2ad4d8b3a96af773e0fb12ac95485c381bce36a /Base/usr/share | |
parent | 1e4b9a9cd97211614b85ba9e4544ee06815685a7 (diff) | |
download | serenity-1f03b6ad5726fa3171d6bb10b293d06fdc5b5dc5.zip |
Playground: Add help documentation
Diffstat (limited to 'Base/usr/share')
-rw-r--r-- | Base/usr/share/man/man1/Playground.md | 28 | ||||
-rw-r--r-- | Base/usr/share/man/man1/gml-format.md | 23 |
2 files changed, 51 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/Playground.md b/Base/usr/share/man/man1/Playground.md new file mode 100644 index 0000000000..aedcc8a66c --- /dev/null +++ b/Base/usr/share/man/man1/Playground.md @@ -0,0 +1,28 @@ +## Name + +Playground - GUI Markup Language (GML) editor + +## Synopsis + +```**sh +$ Playground +``` + +## Description + +Playground facilitates development of graphical user interfaces (GUI) +for Serenity applications using GUI Markup Language (GML) to compose +a layout for GUI widgets and set widget attributes. + +The specified widgets are automatically rendered in a live preview +window, allowing rapid prototyping and development of application GUIs. + +## Examples + +```sh +$ Playground +``` + +## See also + +* [`gml-format`(1)](../man1/gml-format.md) For automated GML formatting diff --git a/Base/usr/share/man/man1/gml-format.md b/Base/usr/share/man/man1/gml-format.md new file mode 100644 index 0000000000..dccffa0999 --- /dev/null +++ b/Base/usr/share/man/man1/gml-format.md @@ -0,0 +1,23 @@ +## Name + +gml-format - automated GUI Markup Language (GML) formatter + +## Synopsis + +```**sh +$ gml-format [--inplace] [path...] +``` + +## Description + +`gml-format` formats GUI Markup Language (GML) files. + +## Options + +* `-i`, `--inplace`: Write formatted contents back to file rather than standard output + +## Examples + +```sh +$ gml-format -i /home/anon/example.gml +``` |