-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
renderer.go
975 lines (825 loc) · 22.3 KB
/
renderer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
package markdown
import (
"bytes"
"fmt"
stdcolor "image/color"
"io"
"math"
"net/http"
"os"
"strings"
"time"
"unicode"
"github.com/MichaelMure/go-term-text"
"github.com/alecthomas/chroma"
"github.com/alecthomas/chroma/formatters"
"github.com/alecthomas/chroma/lexers"
"github.com/alecthomas/chroma/styles"
"github.com/eliukblau/pixterm/pkg/ansimage"
"github.com/fatih/color"
md "github.com/gomarkdown/markdown"
"github.com/gomarkdown/markdown/ast"
"github.com/kyokomi/emoji/v2"
"golang.org/x/net/html"
htmlWalker "github.com/MichaelMure/go-term-markdown/html"
)
/*
Here are the possible cases for the AST. You can render it using PlantUML.
@startuml
(*) --> Document
BlockQuote --> BlockQuote
BlockQuote --> CodeBlock
BlockQuote --> List
BlockQuote --> Paragraph
Del --> Emph
Del --> Strong
Del --> Text
Document --> BlockQuote
Document --> CodeBlock
Document --> Heading
Document --> HorizontalRule
Document --> HTMLBlock
Document --> List
Document --> Paragraph
Document --> Table
Emph --> Text
Heading --> Code
Heading --> Del
Heading --> Emph
Heading --> HTMLSpan
Heading --> Image
Heading --> Link
Heading --> Strong
Heading --> Text
Image --> Text
Link --> Image
Link --> Text
ListItem --> List
ListItem --> Paragraph
List --> ListItem
Paragraph --> Code
Paragraph --> Del
Paragraph --> Emph
Paragraph --> Hardbreak
Paragraph --> HTMLSpan
Paragraph --> Image
Paragraph --> Link
Paragraph --> Strong
Paragraph --> Text
Strong --> Emph
Strong --> Text
TableBody --> TableRow
TableCell --> Code
TableCell --> Del
TableCell --> Emph
TableCell --> HTMLSpan
TableCell --> Image
TableCell --> Link
TableCell --> Strong
TableCell --> Text
TableHeader --> TableRow
TableRow --> TableCell
Table --> TableBody
Table --> TableHeader
@enduml
*/
var _ md.Renderer = &renderer{}
type renderer struct {
// maximum line width allowed
lineWidth int
// constant left padding to apply
leftPad int
// Dithering mode for ansimage
// Default is fine directly through a terminal
// DitheringWithBlocks is recommended if a terminal UI library is used
imageDithering ansimage.DitheringMode
// all the custom left paddings, without the fixed space from leftPad
padAccumulator []string
// one-shot indent for the first line of the inline content
indent string
// for Heading, Paragraph, HTMLBlock and TableCell, accumulate the content of
// the child nodes (Link, Text, Image, formatting ...). The result
// is then rendered appropriately when exiting the node.
inlineAccumulator strings.Builder
// record and render the heading numbering
headingNumbering headingNumbering
headingShade levelShadeFmt
blockQuoteLevel int
blockQuoteShade levelShadeFmt
table *tableRenderer
}
/// NewRenderer creates a new instance of the console renderer
func NewRenderer(lineWidth int, leftPad int, opts ...Options) *renderer {
r := &renderer{
lineWidth: lineWidth,
leftPad: leftPad,
padAccumulator: make([]string, 0, 10),
headingShade: shade(defaultHeadingShades),
blockQuoteShade: shade(defaultQuoteShades),
}
for _, opt := range opts {
opt(r)
}
return r
}
func (r *renderer) pad() string {
return strings.Repeat(" ", r.leftPad) + strings.Join(r.padAccumulator, "")
}
func (r *renderer) addPad(pad string) {
r.padAccumulator = append(r.padAccumulator, pad)
}
func (r *renderer) popPad() {
r.padAccumulator = r.padAccumulator[:len(r.padAccumulator)-1]
}
func (r *renderer) RenderNode(w io.Writer, node ast.Node, entering bool) ast.WalkStatus {
// TODO: remove
// if node.AsLeaf() != nil {
// fmt.Printf("%T, %v (%s)\n", node, entering, string(node.AsLeaf().Literal))
// } else {
// fmt.Printf("%T, %v\n", node, entering)
// }
switch node := node.(type) {
case *ast.Document:
// Nothing to do
case *ast.BlockQuote:
// set and remove a colored bar on the left
if entering {
r.blockQuoteLevel++
r.addPad(r.blockQuoteShade(r.blockQuoteLevel)("┃ "))
} else {
r.blockQuoteLevel--
r.popPad()
}
case *ast.List:
// extra new line at the end of a list *if* next is not a list
if next := ast.GetNextNode(node); !entering && next != nil {
_, parentIsListItem := node.GetParent().(*ast.ListItem)
_, nextIsList := next.(*ast.List)
if !nextIsList && !parentIsListItem {
_, _ = fmt.Fprintln(w)
}
}
case *ast.ListItem:
// write the prefix, add a padding if needed, and let Paragraph handle the rest
if entering {
switch {
// numbered list
case node.ListFlags&ast.ListTypeOrdered != 0:
itemNumber := 1
siblings := node.GetParent().GetChildren()
for _, sibling := range siblings {
if sibling == node {
break
}
itemNumber++
}
prefix := fmt.Sprintf("%d. ", itemNumber)
r.indent = r.pad() + Green(prefix)
r.addPad(strings.Repeat(" ", text.Len(prefix)))
// header of a definition
case node.ListFlags&ast.ListTypeTerm != 0:
r.inlineAccumulator.WriteString(greenOn)
// content of a definition
case node.ListFlags&ast.ListTypeDefinition != 0:
r.addPad(" ")
// no flags means it's the normal bullet point list
default:
r.indent = r.pad() + Green("• ")
r.addPad(" ")
}
} else {
switch {
// numbered list
case node.ListFlags&ast.ListTypeOrdered != 0:
r.popPad()
// header of a definition
case node.ListFlags&ast.ListTypeTerm != 0:
r.inlineAccumulator.WriteString(colorOff)
// content of a definition
case node.ListFlags&ast.ListTypeDefinition != 0:
r.popPad()
_, _ = fmt.Fprintln(w)
// no flags means it's the normal bullet point list
default:
r.popPad()
}
}
case *ast.Paragraph:
// on exiting, collect and format the accumulated content
if !entering {
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
var out string
if r.indent != "" {
out, _ = text.WrapWithPadIndent(content, r.lineWidth, r.indent, r.pad())
r.indent = ""
} else {
out, _ = text.WrapWithPad(content, r.lineWidth, r.pad())
}
_, _ = fmt.Fprint(w, out, "\n")
// extra line break in some cases
if next := ast.GetNextNode(node); next != nil {
switch next.(type) {
case *ast.Paragraph, *ast.Heading, *ast.HorizontalRule,
*ast.CodeBlock, *ast.HTMLBlock:
_, _ = fmt.Fprintln(w)
}
}
}
case *ast.Heading:
if !entering {
r.renderHeading(w, node.Level)
}
case *ast.HorizontalRule:
r.renderHorizontalRule(w)
case *ast.Emph:
if entering {
r.inlineAccumulator.WriteString(italicOn)
} else {
r.inlineAccumulator.WriteString(italicOff)
}
case *ast.Strong:
if entering {
r.inlineAccumulator.WriteString(boldOn)
} else {
// This is super silly but some terminals, instead of having
// the ANSI code SGR 21 do "bold off" like the logic would guide,
// do "double underline" instead. This is madness.
// To resolve that problem, we take a snapshot of the escape state,
// remove the bold, then output "reset all" + snapshot
es := text.EscapeState{}
es.Witness(r.inlineAccumulator.String())
es.Bold = false
r.inlineAccumulator.WriteString(resetAll)
r.inlineAccumulator.WriteString(es.FormatString())
}
case *ast.Del:
if entering {
r.inlineAccumulator.WriteString(crossedOutOn)
} else {
r.inlineAccumulator.WriteString(crossedOutOff)
}
case *ast.Link:
if entering {
r.inlineAccumulator.WriteString("[")
r.inlineAccumulator.WriteString(string(ast.GetFirstChild(node).AsLeaf().Literal))
r.inlineAccumulator.WriteString("](")
r.inlineAccumulator.WriteString(Blue(string(node.Destination)))
if len(node.Title) > 0 {
r.inlineAccumulator.WriteString(" ")
r.inlineAccumulator.WriteString(string(node.Title))
}
r.inlineAccumulator.WriteString(")")
return ast.SkipChildren
}
case *ast.Image:
if entering {
// the alt text/title is weirdly parsed and is actually
// a child text of this node
var title string
if len(node.Children) == 1 {
if t, ok := node.Children[0].(*ast.Text); ok {
title = string(t.Literal)
}
}
str, rendered := r.renderImage(
string(node.Destination), title,
r.lineWidth-r.leftPad,
)
if rendered {
r.inlineAccumulator.WriteString("\n")
r.inlineAccumulator.WriteString(str)
r.inlineAccumulator.WriteString("\n\n")
} else {
r.inlineAccumulator.WriteString(str)
r.inlineAccumulator.WriteString("\n")
}
return ast.SkipChildren
}
case *ast.Text:
if string(node.Literal) == "\n" {
break
}
content := string(node.Literal)
if shouldCleanText(node) {
content = removeLineBreak(content)
}
// emoji support !
emojed := emoji.Sprint(content)
r.inlineAccumulator.WriteString(emojed)
case *ast.HTMLBlock:
r.renderHTMLBlock(w, node)
case *ast.CodeBlock:
r.renderCodeBlock(w, node)
case *ast.Softbreak:
// not actually implemented in gomarkdown
r.inlineAccumulator.WriteString("\n")
case *ast.Hardbreak:
r.inlineAccumulator.WriteString("\n")
case *ast.Code:
r.inlineAccumulator.WriteString(BlueBgItalic(string(node.Literal)))
case *ast.HTMLSpan:
r.inlineAccumulator.WriteString(Red(string(node.Literal)))
case *ast.Table:
if entering {
r.table = newTableRenderer()
} else {
r.table.Render(w, r.leftPad, r.lineWidth)
r.table = nil
}
case *ast.TableCell:
if !entering {
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
align := CellAlignLeft
switch node.Align {
case ast.TableAlignmentRight:
align = CellAlignRight
case ast.TableAlignmentCenter:
align = CellAlignCenter
}
if node.IsHeader {
r.table.AddHeaderCell(content, align)
} else {
r.table.AddBodyCell(content, CellAlignCopyHeader)
}
}
case *ast.TableHeader, *ast.TableBody, *ast.TableFooter:
// nothing to do
case *ast.TableRow:
if _, ok := node.Parent.(*ast.TableBody); ok && entering {
r.table.NextBodyRow()
}
if _, ok := node.Parent.(*ast.TableFooter); ok && entering {
r.table.NextBodyRow()
}
default:
panic(fmt.Sprintf("Unknown node type %T", node))
}
return ast.GoToNext
}
func (*renderer) RenderHeader(w io.Writer, node ast.Node) {}
func (*renderer) RenderFooter(w io.Writer, node ast.Node) {}
func (r *renderer) renderHorizontalRule(w io.Writer) {
_, _ = fmt.Fprintf(w, "%s%s\n\n", r.pad(), strings.Repeat("─", r.lineWidth-r.leftPad))
}
func (r *renderer) renderHeading(w io.Writer, level int) {
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
// render the full line with the headingNumbering
r.headingNumbering.Observe(level)
content = fmt.Sprintf("%s %s", r.headingNumbering.Render(), content)
content = r.headingShade(level)(content)
// wrap if needed
wrapped, _ := text.WrapWithPad(content, r.lineWidth, r.pad())
_, _ = fmt.Fprintln(w, wrapped)
// render the underline, if any
if level == 1 {
_, _ = fmt.Fprintf(w, "%s%s\n", r.pad(), strings.Repeat("─", r.lineWidth-r.leftPad))
}
_, _ = fmt.Fprintln(w)
}
func (r *renderer) renderCodeBlock(w io.Writer, node *ast.CodeBlock) {
code := string(node.Literal)
var lexer chroma.Lexer
// try to get the lexer from the language tag if any
if len(node.Info) > 0 {
lexer = lexers.Get(string(node.Info))
}
// fallback on detection
if lexer == nil {
lexer = lexers.Analyse(code)
}
// all failed :-(
if lexer == nil {
lexer = lexers.Fallback
}
// simplify the lexer output
lexer = chroma.Coalesce(lexer)
var formatter chroma.Formatter
if color.NoColor {
formatter = formatters.Fallback
} else {
formatter = formatters.TTY8
}
iterator, err := lexer.Tokenise(nil, code)
if err != nil {
// Something failed, falling back to no highlight render
r.renderFormattedCodeBlock(w, code)
return
}
buf := &bytes.Buffer{}
err = formatter.Format(buf, styles.Pygments, iterator)
if err != nil {
// Something failed, falling back to no highlight render
r.renderFormattedCodeBlock(w, code)
return
}
r.renderFormattedCodeBlock(w, buf.String())
}
func (r *renderer) renderFormattedCodeBlock(w io.Writer, code string) {
// remove the trailing line break
code = strings.TrimRight(code, "\n")
r.addPad(GreenBold("┃ "))
output, _ := text.WrapWithPad(code, r.lineWidth, r.pad())
r.popPad()
_, _ = fmt.Fprint(w, output)
_, _ = fmt.Fprintf(w, "\n\n")
}
func (r *renderer) renderHTMLBlock(w io.Writer, node *ast.HTMLBlock) {
var buf bytes.Buffer
flushInline := func() {
if r.inlineAccumulator.Len() <= 0 {
return
}
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
out, _ := text.WrapWithPad(content, r.lineWidth, r.pad())
_, _ = fmt.Fprint(&buf, out, "\n\n")
}
doc, err := html.Parse(bytes.NewReader(node.Literal))
if err != nil {
// if there is a parsing error, fallback to a simple render
r.inlineAccumulator.Reset()
content := Red(string(node.Literal))
out, _ := text.WrapWithPad(content, r.lineWidth, r.pad())
_, _ = fmt.Fprint(w, out, "\n\n")
return
}
htmlWalker.WalkFunc(doc, func(node *html.Node, entering bool) htmlWalker.WalkStatus {
// if node.Type != html.TextNode {
// fmt.Println(node.Type, "(", node.Data, ")", entering)
// }
switch node.Type {
case html.CommentNode, html.DoctypeNode:
// Not rendered
case html.DocumentNode:
case html.ElementNode:
switch node.Data {
case "html", "body":
return htmlWalker.GoToNext
case "head":
return htmlWalker.SkipChildren
case "div", "p":
if entering {
flushInline()
} else {
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
if len(content) == 0 {
return htmlWalker.GoToNext
}
// remove all line breaks, those are fully managed in HTML
content = strings.Replace(content, "\n", "", -1)
align := getDivHTMLAttr(node.Attr)
content, _ = text.WrapWithPadAlign(content, r.lineWidth, r.pad(), align)
_, _ = fmt.Fprint(&buf, content, "\n\n")
}
case "h1":
if !entering {
r.renderHeading(&buf, 1)
}
case "h2":
if !entering {
r.renderHeading(&buf, 2)
}
case "h3":
if !entering {
r.renderHeading(&buf, 3)
}
case "h4":
if !entering {
r.renderHeading(&buf, 4)
}
case "h5":
if !entering {
r.renderHeading(&buf, 5)
}
case "h6":
if !entering {
r.renderHeading(&buf, 6)
}
case "img":
flushInline()
src, title := getImgHTMLAttr(node.Attr)
str, _ := r.renderImage(src, title, r.lineWidth-len(r.pad()))
r.inlineAccumulator.WriteString(str)
case "hr":
flushInline()
r.renderHorizontalRule(&buf)
case "ul", "ol":
if !entering {
if node.NextSibling == nil {
_, _ = fmt.Fprint(&buf, "\n")
return htmlWalker.GoToNext
}
switch node.NextSibling.Data {
case "ul", "ol":
default:
_, _ = fmt.Fprint(&buf, "\n")
}
}
case "li":
if entering {
switch node.Parent.Data {
case "ul":
r.indent = r.pad() + Green("• ")
r.addPad(" ")
case "ol":
itemNumber := 1
previous := node.PrevSibling
for previous != nil {
itemNumber++
previous = previous.PrevSibling
}
prefix := fmt.Sprintf("%d. ", itemNumber)
r.indent = r.pad() + Green(prefix)
r.addPad(strings.Repeat(" ", text.Len(prefix)))
default:
r.inlineAccumulator.WriteString(Red(renderRawHtml(node)))
return htmlWalker.SkipChildren
}
} else {
switch node.Parent.Data {
case "ul", "ol":
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
out, _ := text.WrapWithPadIndent(content, r.lineWidth, r.indent, r.pad())
r.indent = ""
_, _ = fmt.Fprint(&buf, out, "\n")
r.popPad()
}
}
case "a":
if entering {
r.inlineAccumulator.WriteString("[")
} else {
href, alt := getAHTMLAttr(node.Attr)
r.inlineAccumulator.WriteString("](")
r.inlineAccumulator.WriteString(Blue(href))
if len(alt) > 0 {
r.inlineAccumulator.WriteString(" ")
r.inlineAccumulator.WriteString(alt)
}
r.inlineAccumulator.WriteString(")")
}
case "br":
if entering {
r.inlineAccumulator.WriteString("\n")
}
case "table":
if entering {
flushInline()
r.table = newTableRenderer()
} else {
r.table.Render(&buf, r.leftPad, r.lineWidth)
r.table = nil
}
case "thead", "tbody":
// nothing to do
case "tr":
if entering && node.Parent.Data != "thead" {
r.table.NextBodyRow()
}
case "th":
if !entering {
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
align := getTdHTMLAttr(node.Attr)
r.table.AddHeaderCell(content, align)
}
case "td":
if !entering {
content := r.inlineAccumulator.String()
r.inlineAccumulator.Reset()
align := getTdHTMLAttr(node.Attr)
r.table.AddBodyCell(content, align)
}
case "strong", "b":
if entering {
r.inlineAccumulator.WriteString(boldOn)
} else {
// This is super silly but some terminals, instead of having
// the ANSI code SGR 21 do "bold off" like the logic would guide,
// do "double underline" instead. This is madness.
// To resolve that problem, we take a snapshot of the escape state,
// remove the bold, then output "reset all" + snapshot
es := text.EscapeState{}
es.Witness(r.inlineAccumulator.String())
es.Bold = false
r.inlineAccumulator.WriteString(resetAll)
r.inlineAccumulator.WriteString(es.FormatString())
}
case "i", "em":
if entering {
r.inlineAccumulator.WriteString(italicOn)
} else {
r.inlineAccumulator.WriteString(italicOff)
}
case "s":
if entering {
r.inlineAccumulator.WriteString(crossedOutOn)
} else {
r.inlineAccumulator.WriteString(crossedOutOff)
}
default:
r.inlineAccumulator.WriteString(Red(renderRawHtml(node)))
}
case html.TextNode:
t := strings.TrimSpace(node.Data)
t = strings.ReplaceAll(t, "\n", "")
r.inlineAccumulator.WriteString(t)
default:
panic("unhandled case")
}
return htmlWalker.GoToNext
})
flushInline()
_, _ = fmt.Fprint(w, buf.String())
r.inlineAccumulator.Reset()
// // dl + (dt+dd)
//
// // details
// // summary
//
}
func getDivHTMLAttr(attrs []html.Attribute) text.Alignment {
for _, attr := range attrs {
switch attr.Key {
case "align":
switch attr.Val {
case "left":
return text.AlignLeft
case "center":
return text.AlignCenter
case "right":
return text.AlignRight
}
}
}
return text.AlignLeft
}
func getImgHTMLAttr(attrs []html.Attribute) (src, title string) {
for _, attr := range attrs {
switch attr.Key {
case "src":
src = attr.Val
case "alt":
title = attr.Val
}
}
return
}
func getAHTMLAttr(attrs []html.Attribute) (href, alt string) {
for _, attr := range attrs {
switch attr.Key {
case "href":
href = attr.Val
case "alt":
alt = attr.Val
}
}
return
}
func getTdHTMLAttr(attrs []html.Attribute) CellAlign {
for _, attr := range attrs {
switch attr.Key {
case "align":
switch attr.Val {
case "right":
return CellAlignRight
case "left":
return CellAlignLeft
case "center":
return CellAlignCenter
}
case "style":
for _, pair := range strings.Split(attr.Val, " ") {
split := strings.Split(pair, ":")
if split[0] != "text-align" || len(split) != 2 {
continue
}
switch split[1] {
case "right":
return CellAlignRight
case "left":
return CellAlignLeft
case "center":
return CellAlignCenter
}
}
}
}
return CellAlignLeft
}
func renderRawHtml(node *html.Node) string {
var result strings.Builder
openContent := make([]string, 0, 8)
openContent = append(openContent, node.Data)
for _, attr := range node.Attr {
openContent = append(openContent, fmt.Sprintf("%s=\"%s\"", attr.Key, attr.Val))
}
result.WriteString("<")
result.WriteString(strings.Join(openContent, " "))
if node.FirstChild == nil {
result.WriteString("/>")
return result.String()
}
result.WriteString(">")
child := node.FirstChild
for child != nil {
if child.Type == html.TextNode {
t := strings.TrimSpace(child.Data)
result.WriteString(t)
child = child.NextSibling
continue
}
switch node.Data {
case "ul", "p":
result.WriteString("\n ")
}
result.WriteString(renderRawHtml(child))
child = child.NextSibling
}
switch node.Data {
case "ul", "p":
result.WriteString("\n")
}
result.WriteString("</")
result.WriteString(node.Data)
result.WriteString(">")
return result.String()
}
func (r *renderer) renderImage(dest string, title string, lineWidth int) (result string, rendered bool) {
title = strings.ReplaceAll(title, "\n", "")
title = strings.TrimSpace(title)
dest = strings.ReplaceAll(dest, "\n", "")
dest = strings.TrimSpace(dest)
fallback := func() (string, bool) {
return fmt.Sprintf("![%s](%s)", title, Blue(dest)), false
}
reader, err := imageFromDestination(dest)
if err != nil {
return fallback()
}
x := lineWidth
if r.imageDithering == ansimage.DitheringWithChars || r.imageDithering == ansimage.DitheringWithBlocks {
// not sure why this is needed by ansimage
// x *= 4
}
img, err := ansimage.NewScaledFromReader(reader, math.MaxInt32, x,
stdcolor.Black, ansimage.ScaleModeFit, r.imageDithering)
if err != nil {
return fallback()
}
if title != "" {
return fmt.Sprintf("%s%s: %s", img.Render(), title, Blue(dest)), true
}
return fmt.Sprintf("%s%s", img.Render(), Blue(dest)), true
}
func imageFromDestination(dest string) (io.ReadCloser, error) {
client := http.Client{
Timeout: 5 * time.Second,
}
if strings.HasPrefix(dest, "http://") || strings.HasPrefix(dest, "https://") {
res, err := client.Get(dest)
if err != nil {
return nil, err
}
if res.StatusCode != http.StatusOK {
return nil, fmt.Errorf("http: %v", http.StatusText(res.StatusCode))
}
return res.Body, nil
}
return os.Open(dest)
}
func removeLineBreak(text string) string {
lines := strings.Split(text, "\n")
if len(lines) <= 1 {
return text
}
for i, l := range lines {
switch i {
case 0:
lines[i] = strings.TrimRightFunc(l, unicode.IsSpace)
case len(lines) - 1:
lines[i] = strings.TrimLeftFunc(l, unicode.IsSpace)
default:
lines[i] = strings.TrimFunc(l, unicode.IsSpace)
}
}
return strings.Join(lines, " ")
}
func shouldCleanText(node ast.Node) bool {
for node != nil {
switch node.(type) {
case *ast.BlockQuote:
return false
case *ast.Heading, *ast.Image, *ast.Link,
*ast.TableCell, *ast.Document, *ast.ListItem:
return true
}
node = node.GetParent()
}
panic("bad markdown document or missing case")
}