Skip to content

drproteus/go-goldmark-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Goldmark MD ➡️ HTML Converter

go build main.go
./main test.md test.html
# Hello {{.TestName}}

This is a [test](https://github.com/drproteus/go-goldmark-test)

> Here is a blockquote

* list
* one
* two

1. hello
2. world

![diz](https://static.skinet.org/images/dizbanner.png)
{
    "TestName": "Goldmark Test"
}

Output

<link rel="stylesheet"
	href="https://cdn.jsdelivr.net/npm/sakura.css/css/sakura.css"
	type="text/css">
<h1>Hello Goldmark Test</h1>
<p>This is a <a href="https://github.com/drproteus/go-goldmark-test">test</a></p>
<blockquote>
<p>Here is a blockquote</p>
</blockquote>
<ul>
<li>list</li>
<li>one</li>
<li>two</li>
</ul>
<ol>
<li>hello</li>
<li>world</li>
</ol>
<p><img src="https://static.skinet.org/images/dizbanner.png" alt="diz"></p>
image

Releases

No releases published

Packages

 
 
 

Contributors