An open API service indexing awesome lists of open source software.

https://github.com/gregoryv/ud

Utility for replacing elements by id within html files.
https://github.com/gregoryv/ud

go golang html terminal

Last synced: about 2 months ago
JSON representation

Utility for replacing elements by id within html files.

Awesome Lists containing this project

README

          

ARCHIVED! moved to https://sogvin.com/ud

[ud](https://godoc.org/github.com/gregoryv/ud) - Utility for replacing elements by id within html files.

## Quick start

go get -u github.com/gregoryv/ud

Replace an element by id

echo "new thing" | ud -w -i "someid" -html index.html

which is same as

echo 'new thing' | ud -w -html index.html

Note! when `-i` flag is not given `-c` has no effect, it will always
replace the identified element.

Replace content of element by id use the `-c` flag

echo "new thing" | ud -w -c -i "someid" -html index.html

## Primary usecase

The primary reason for this tool was to simply generate and update
image maps within html when working with graphviz documents

dot -Tcmapx somegraph.dot | ud -w -html index.html

![](illustration.gv.svg)