forked from indymedia/epicyon
Replace dash
parent
c8854f2e3d
commit
fc1bc510a6
|
@ -51,7 +51,7 @@ def saveArrivedTime(baseDir: str, postFilename: str, arrived: str) -> None:
|
||||||
|
|
||||||
|
|
||||||
def removeControlCharacters(content: str) -> str:
|
def removeControlCharacters(content: str) -> str:
|
||||||
return content.replace('&8211;', '-')
|
return content.replace('&8211;', '-').replace('–', '-')
|
||||||
|
|
||||||
|
|
||||||
def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
|
def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
|
||||||
|
@ -102,13 +102,13 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
|
||||||
|
|
||||||
# add the off-site link to the description
|
# add the off-site link to the description
|
||||||
if rssDescription:
|
if rssDescription:
|
||||||
rssDescription = '<br><br>' + rssDescription + \
|
rssDescription += \
|
||||||
'<br><br><a href="' + url + '">' + \
|
'\n\n<a href="' + url + '">' + \
|
||||||
translate['Read more...'] + '</a><br>'
|
translate['Read more...'] + '</a>'
|
||||||
else:
|
else:
|
||||||
rssDescription = '<br><br>' + \
|
rssDescription = \
|
||||||
'<a href="' + url + '">' + \
|
'<a href="' + url + '">' + \
|
||||||
translate['Read more...'] + '</a><br>'
|
translate['Read more...'] + '</a>'
|
||||||
|
|
||||||
followersOnly = False
|
followersOnly = False
|
||||||
useBlurhash = False
|
useBlurhash = False
|
||||||
|
@ -142,7 +142,6 @@ def convertRSStoActivityPub(baseDir: str, httpPrefix: str,
|
||||||
blog['object']['url'] = \
|
blog['object']['url'] = \
|
||||||
httpPrefix + '://' + domain + '/@news/' + statusNumber
|
httpPrefix + '://' + domain + '/@news/' + statusNumber
|
||||||
blog['object']['published'] = dateStr
|
blog['object']['published'] = dateStr
|
||||||
blog['object']['content'] = rssDescription
|
|
||||||
|
|
||||||
postId = newPostId.replace('/', '#')
|
postId = newPostId.replace('/', '#')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue