# README
goldmark-attributes
GoldMark block attributes extension.
# Document {#main}
> Why, you may take the most gallant sailor, the most intrepid airman or the
> most audacious soldier, put them at a table together – what do you get? The
> sum of their fears.
{.epigraph}
<h1 id="main">Document</h1>
<blockquote class="epigraph"><p>Why, you may take the most gallant sailor, the
most intrepid airman or the most audacious soldier, put them at a table
together – what do you get? The sum of their fears.</p>
</blockquote>
var md = goldmark.New(attributes.Enable)
var source = []byte("{#id .class1}\ntext")
err := md.Convert(source, os.Stdout)
if err != nil {
log.Fatal(err)
}
# Variables
Enable is a goldmark.Option with block attributes support.
Extension is a goldmark.Extender with markdown block attributes support.
KindAttributes is a NodeKind of the attributes block node.