Use ! as a delimiter for title and slug

This commit is contained in:
Alexander Borsuk 2022-02-22 12:08:18 +01:00
parent 3ebc488ca9
commit b2e7a938db

View file

@ -38,7 +38,7 @@ function downloadAsync(url, path) {
// Creates a title for news piece from text.
function getTitle(text) {
// Strip urls and text after them.
const breakers = ['http', '. ', ':', '\n'];
const breakers = ['http', '. ', ':', '\n', '!'];
for (let b = 0; b < breakers.length; ++b) {
const i = text.indexOf(breakers[b]);
if (i > 0) text = text.substring(0, i);