(doc: Doc.Doc<SimpleHtml>, level: number)
| 109 | const paragraph = (doc: Doc.Doc<SimpleHtml>): Doc.Doc<SimpleHtml> => Doc.annotate(doc, { _tag: "Paragraph" }) |
| 110 | |
| 111 | const header = (doc: Doc.Doc<SimpleHtml>, level: number): Doc.Doc<SimpleHtml> => |
| 112 | Doc.annotate(doc, { _tag: "Header", level }) |
| 113 | |
| 114 | const colorToHex = (color: "Red" | "Green" | "Blue"): string => { |
| 115 | switch (color) { |
no test coverage detected
searching dependent graphs…