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 fa488e1 commit 4af4500Copy full SHA for 4af4500
src/Common/Markdown/MarkDown.tsx
@@ -81,9 +81,6 @@ const MarkDown = ({
81
82
renderer.heading = ({ text, depth }: Tokens.Heading) => {
83
// Alternative debugging - add to window object
84
- if (typeof window !== 'undefined') {
85
- ;(window as any).debugHeadingText = text
86
- }
87
const escapedText = disableEscapedText ? '' : text.toLowerCase().replace(/[^\w]+/g, '-')
88
89
return `
src/Common/Markdown/markdown.scss
@@ -132,4 +132,7 @@
132
ul.md-list ul {
133
margin: 8px 0;
134
}
135
+ ol {
136
+ padding-left: 15px;
137
+ }
138
0 commit comments