Text is the TEXT constructor.
(s string)
| 67 | |
| 68 | // Text is the TEXT constructor. |
| 69 | func Text(s string) Doc { |
| 70 | return text(s) |
| 71 | } |
| 72 | |
| 73 | // line represents LINE :: DOC -- a "soft line" that can be flattened to a space. |
| 74 | type line struct{} |
no test coverage detected
searching dependent graphs…