(className, options, thickness)
| 5597 | const makeSvgSpan = (classes, children, options, style) => new Span(classes, children, options, style); |
| 5598 | |
| 5599 | const makeLineSpan = function makeLineSpan(className, options, thickness) { |
| 5600 | const line = makeSpan([className], [], options); |
| 5601 | line.height = thickness || options.fontMetrics().defaultRuleThickness; |
| 5602 | line.style.borderBottomWidth = line.height + "em"; |
| 5603 | line.maxFontSize = 1.0; |
| 5604 | return line; |
| 5605 | }; |
| 5606 | /** |
| 5607 | * Makes an anchor with the given href, list of classes, list of children, |
| 5608 | * and options. |
nothing calls this directly
no test coverage detected