Text is the TEXT constructor.
(s string)
| 81 | |
| 82 | // Text is the TEXT constructor. |
| 83 | func Text(s string) Doc { |
| 84 | return text(s) |
| 85 | } |
| 86 | |
| 87 | // line represents LINE :: DOC -- a "soft line" that can be flattened to a space. |
| 88 | type line struct{} |
no test coverage detected