(
expression: string,
options: SettingsOptions,
)
| 69 | * Parse and build an expression, and return the markup for that. |
| 70 | */ |
| 71 | const renderToString = function( |
| 72 | expression: string, |
| 73 | options: SettingsOptions, |
| 74 | ): string { |
| 75 | const markup = renderToDomTree(expression, options).toMarkup(); |
| 76 | return markup; |
| 77 | }; |
| 78 | |
| 79 | /** |
| 80 | * Parse an expression and return the parse tree. |
nothing calls this directly
no test coverage detected
searching dependent graphs…