(options = {})
| 2 | |
| 3 | export default class { |
| 4 | constructor(options = {}) { |
| 5 | this.converter = new showdown.Converter(options); |
| 6 | } |
| 7 | |
| 8 | render(text) { |
| 9 | return this.converter.makeHtml(text); |
nothing calls this directly
no outgoing calls
no test coverage detected