Open
Description
Title displays normally, code section not displayed
const copy = `# h1 Heading 8-)
This is some bold text!
This is normal text
```javascript
function debounce(func, wait) {
let timeout;
return function() {
clearTimeout(timeout);
timeout = setTimeout(() => func.apply(this, arguments), wait);
};
}
```
`;
Metadata
Metadata
Assignees
Labels
No labels