All Versions
3
Latest Version
Avg Release Cycle
6 days
Latest Release
1547 days ago
Changelog History
Changelog History
-
v1.2.0 Changes
August 10, 2020🔌 The
Table
Plugin was improved and theTableCompat
Plugin was added➕ Added
After
andBefore
hooks to the converter. To see how it is used, have a look at the Table Plugin.func Table() md.Plugin { return func(c \*md.Converter) []md.Rule { // the plugin (when added via Use) gets called with the converter and can use the methods on it.c.Before(func(selec \*goquery.Selection) { // manipulate the dom to move all caption elements outside the table }) // it returns the rulesreturn []md.Rule{ ... } } }
-
v1.1.0 Changes
August 06, 2020🔧 You can now override the
GetAbsoluteURL
function in theOptions
. For example, you can configure a proxy for the images. -
v1.0.0 Changes
July 30, 2020The library works pretty well but you might still encounter some edge cases. Please report any generated invalid markdown...