summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2022-11-05 10:19:04 -0500
committerJeff Carr <[email protected]>2022-11-05 10:19:04 -0500
commit099efb6b24caf9eaad50d7386636a7ac23552bde (patch)
tree215685d7153e6d002c921d4f7ad2fa12d52fe323 /README.md
parenta72d0ab2d0ff58704cc28993ea428b8c6c8825d7 (diff)
v0.4.2 more code cleanups and improvementsv0.4.2
Add command line argv handling using go-arg make hello world dumb stupid simple again more swtiching to common code move debugging options to support go-args more debugging output cleanup more debugging cleanups fix null pointer crash
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 16 insertions, 9 deletions
diff --git a/README.md b/README.md
index e706d4b..50a359b 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ Principles:
* It's ok to guess. We will return something close.
* Hide complexity internally here
* Isolate the GUI toolkit
-* Function names should follow [[Graphical widget]]
+* Function names should follow [Wikipedia Graphical widget]
```
## Quick Start
@@ -107,12 +107,19 @@ information this uses spew.Dump()
-- manpage quote from the excellent minimalistic window manager 'evilwm'
-## External References
+## References
-Useful links and other external things which might be useful
+Useful links and other
+external things
+which might be useful
-* [Wikipedia Graphical widget](https://en.wikipedia.org/wiki/Graphical_widget)
-* [Github mirror](https://github.com/witorg/gui)
+[Wikipedia Graphical widget]: [https://en.wikipedia.org/wiki/Graphical_widget](https://en.wikipedia.org/wiki/Graphical_widget)
+[Github mirror]: [https://github.com/witorg/gui](https://github.com/witorg/gui)
+
+```go
+* [Wikipedia Graphical widget]
+* [Github mirror]
+```
## Functions
@@ -154,7 +161,7 @@ This creates a window that shows how this package works
`func GolangDebugWindow()`
-### func [IndentPrintln](/structs.go#L191)
+### func [IndentPrintln](/structs.go#L190)
`func IndentPrintln(a ...interface{})`
@@ -187,7 +194,7 @@ For example: gui.Queue(NewWindow())
## Types
-### type [GuiConfig](/structs.go#L43)
+### type [GuiConfig](/structs.go#L42)
`type GuiConfig struct { ... }`
@@ -197,7 +204,7 @@ For example: gui.Queue(NewWindow())
var Config GuiConfig
```
-### type [Node](/structs.go#L98)
+### type [Node](/structs.go#L97)
`type Node struct { ... }`
@@ -255,7 +262,7 @@ func main() {
You get a window
```
-### type [Widget](/structs.go#L68)
+### type [Widget](/structs.go#L67)
`type Widget int`