MdEdit is a Vi-like markdown editor built using Gio. It is extremely early stage software. The Vi editor lacks most functionality and might be pretty buggy.
If you have task
,
goimports
and
gofumpt
installed, you can simply run
task
(or task nowayland
) to fmt, lint and build the project.
However, to just build the mdedit
executable, run:
go build -o mdedit cmd/mdedit/main.go
# or, to build without wayland support:
go build -tags nowayland -o mdedit cmd/mdedit/main.go