1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

Fix bad indentation in support data

This commit is contained in:
Raymond Hill 2021-11-14 13:40:00 -05:00
parent 5625673d2c
commit c90b2e4d6f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -115,7 +115,7 @@ function patchEmptiness(data, prop) {
}
function configToMarkdown(collapse = false) {
const text = cmEditor.getValue().replace(/^ /gm, '');
const text = cmEditor.getValue();
return collapse
? '<details>\n\n```yaml\n' + text + '\n```\n</details>'
: '```yaml\n' + text + '\n```\n';