forked from organicmaps/website
Use ! as a delimiter for title and slug
This commit is contained in:
parent
3ebc488ca9
commit
b2e7a938db
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue