forked from organicmaps/website
Updated script to clean up unnecessary trailing whitespaces and insert newlines
This commit is contained in:
parent
adf953b79d
commit
a71fcfc5e5
1 changed files with 5 additions and 1 deletions
|
@ -59,6 +59,8 @@ function slugify(text) {
|
|||
return text;
|
||||
}
|
||||
|
||||
const trailingSpacesRE = / +\n/sg;
|
||||
|
||||
function toMarkdown(node, date) {
|
||||
const time = date.substring(11, 16);
|
||||
// News web page title.
|
||||
|
@ -71,11 +73,13 @@ function toMarkdown(node, date) {
|
|||
if (!node) return frontmatter;
|
||||
|
||||
let content = nhm.translate(node.innerHTML);
|
||||
// Clean up some unnecessary whitespaces after nhm conversion.
|
||||
content = content.replaceAll(trailingSpacesRE, '\n');
|
||||
// We use other dots for lists.
|
||||
content = content.replaceAll('• ', '* ');
|
||||
// Telegram makes emoji bold italic.
|
||||
content = content.replaceAll(emojiRE, '$1');
|
||||
return frontmatter + content;
|
||||
return frontmatter + content + '\n'; // Trailing newline for consistency.
|
||||
}
|
||||
|
||||
if (process.argv.length > 2) {
|
||||
|
|
Loading…
Add table
Reference in a new issue