| Age | Commit message (Collapse) | Author |
|
Every time we execute "make test-parser", the generated HTML files will
changes the "Last updated xxx" (where xxx is the time its executed).
This changes prevent this unnecessary diff in the future.
|
|
The generated HTML now contains the default stylesheet.
The stylesheet is copied from HTML file generated by Asciidoctor v2.0.23.
|
|
The fieldalignment and shadow is linter from golang.org/x/tools.
This linters actually have an API that can be combined into a program,
which provided by package "pakakeh.go/lib/goanalysis".
|
|
Using 8080 is too common and has cause conflict with some service on my
development laptop.
|
|
This is the second we remove golangci-lint.
Previously, we replace it with revive, now we replace it with go internal
tools "go vet".
The problem is the same, golangci-lint does not works when compiled or
using gotip.
Also, on VM with 8GB memory, it will crash due to OOM.
|
|
|
|
The golangci-lint does not output any results anymore
Either we are getting good at writing Go or the linter itself is become
less good.
We also have seen that the latest golangci-lint is failed to build
with Go tip, a simple "make" on the golangci-lint never success in my
experiences.
This changes fix all the output reported by the revive and shadow.
|
|
The meta tags from original asciidoctor are ordered as viewport,
generator, description, keywords, and then author.
While at it remove empty style tag due to when testing we use empty.css
not "stylesheet!".
|
|
This is to make sure that the test pass, since the linting is optional.
|
|
Since the all documentation files has been moved to _doc,
the serve-doc task should watch and serve directory _doc too.
|
|
The HTML output file from asciidoctor is renamed to test.exp.html,
and HTML output file from this library is renamed to test.got.html.
The test.html in testdata is generated from ciigo, when running
"make serve-doc".
|
|
This change use file name "README" for serving it in sr.ht, since the
site does not support rendering asciidoc.
The index.adoc is provided as symlink to README.
While at it, add list of BUGS and ENHANCEMENTS under TODO sections;
link to CHANGELOG, and other files.
|
|
|
|
Signed-off-by: Shulhan <ms@kilabit.info>
|
|
|
|
Remove unused constants and functions, replace Write() with fmt.Fprint(),
and other fixes.
|
|
This is the first commit that can parser whole document line by line
and provide convertion to HTML.
Things that does not working: inline style, table, passthrough,
dynamic attributes, include.
|