We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d8097 commit d269231Copy full SHA for d269231
1 file changed
addon/utils/compile-markdown.js
@@ -208,6 +208,18 @@ class HBSRenderer extends marked.Renderer {
208
`;
209
}
210
211
+ list(text, ordered) {
212
+ if (ordered) {
213
+ return `
214
+ <ol class="docs-list-decimal">${text}</ol>
215
+ `;
216
+ } else {
217
218
+ <ul class="docs-list-disc">${text}</ul>
219
220
+ }
221
222
+
223
table(header, body) {
224
if (body) body = '<tbody>' + body + '</tbody>';
225
0 commit comments