mirror of
https://github.com/rwinkhart/glamour-temp-MUTN.git
synced 2026-08-28 04:46:29 -04:00
fix: render urls in table (#248)
This commit is contained in:
+7
-2
@@ -306,8 +306,13 @@ func (tr *ANSIRenderer) NewElement(node ast.Node, source []byte) Element {
|
||||
s := ""
|
||||
n := node.FirstChild()
|
||||
for n != nil {
|
||||
s += string(n.Text(source))
|
||||
// s += string(n.LinkData.Destination)
|
||||
switch t := n.(type) {
|
||||
case *ast.AutoLink:
|
||||
s += string(t.Label(source))
|
||||
default:
|
||||
s += string(n.Text(source))
|
||||
}
|
||||
|
||||
n = n.NextSibling()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user