Organize key-value pair information and links in categories in a local HTML you can load in your browser.
- Make a copy the file
content.json.example
and name itcontent.json
. - Edit the
content.json
file; add sections as needed. - Run
go run main.go
to render the html with the content. A file calledmemo.html
will be created. - Open the
memo.html
file in your web browser.
- Update the
content.json
file as needed. - Then run
go run main.go
to update thememo.html
output file. - Refresh the
memo.html
page in the browser to see the updated content.
You can add as many sections as needed.
{
"sections": [
{
"name": "Section 1",
"items": [
{
"type": "text",
"description": "Some ID",
"value": "12345-12345"
},
{
"type": "link",
"description": "Some URL",
"value": "https://google.com"
}
]
}
]
}
--
@isacben