()
| 171 | }, |
| 172 | |
| 173 | meta_quote_open() { return "\n\n<blockquote>" }, |
| 174 | meta_quote_close(token) { |
| 175 | let {author, title} = token.args[0] || {} |
| 176 | return (author ? `\n\n<footer>${escape(author)}${title ? `, <cite>${escape(title)}</cite>` : ""}</footer>` : "") + |
nothing calls this directly
no outgoing calls
no test coverage detected