e5d791165d
This adds support for Markdown table rendering with github.com/olekukonko/tablewriter. Tables are rendered as ASCII text in a preformatted text block. Cells are hard-aligned with spaces. tablewriter options are not yet configurable, although they should be. For now, extra formatting inside tables is omitted. Fixes #2.
10 lines
238 B
Modula-2
10 lines
238 B
Modula-2
module github.com/tdemin/gmnhg
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/gomarkdown/markdown v0.0.0-20210514010506-3b9f47219fe7
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|