|
@@ -84,7 +84,7 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
}
|
|
|
else if (blocks[i]['type'] == "hr") {
|
|
|
//alert('yo');
|
|
|
- editorBlocks.push({ type: "paragraph", data: { text: "<hr>" } });
|
|
|
+ editorBlocks.push({ type: "paragraph", data: { text: "---" } });
|
|
|
}
|
|
|
else if (blocks[i]['type'] == "mt5") {
|
|
|
//alert('yo');
|
|
@@ -177,7 +177,7 @@ submitButton.onclick = function () {
|
|
|
mdContent += 'type: "' + $('#ctype').val() + '"\n';
|
|
|
mdContent += 'url: "' + $('#curl').val() + '"\n';
|
|
|
mdContent += 'image: "' + $('#cimage').val() + '"\n';
|
|
|
- mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g,'<br>') + '"\n';
|
|
|
+ mdContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g, '<br>') + '"\n';
|
|
|
mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
|
|
|
mdContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
|
|
|
mdContent += '---\n\n';
|
|
@@ -192,6 +192,7 @@ submitButton.onclick = function () {
|
|
|
mdContent += '\n' + block.data.text + '\n';
|
|
|
}
|
|
|
else if (block.type == "hr") {
|
|
|
+ //alert('hr');
|
|
|
mdContent += '\n---\n';
|
|
|
}
|
|
|
else if (block.type == "image") {
|