1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-26 21:12:59 +02:00

Doc: Fix news page

This commit is contained in:
Laurent Cozic 2023-05-08 12:59:27 +01:00
parent fc5f338e16
commit a4b81edb5a

View File

@ -125,6 +125,8 @@ function defaultTemplateParams(assetUrls: AssetUrls, locale: Locale = null): Tem
}
function renderPageToHtml(md: string, targetPath: string, templateParams: TemplateParams) {
if (templateParams.isNews) templateParams.locale = enGbLocale;
// Remove the header because it's going to be added back as HTML
md = md.replace(/# Joplin\n/, '');
@ -428,7 +430,7 @@ async function main() {
const openGraph = await extractOpenGraphTags(mdFile, makeTargetUrl(mdFile, locale.pathPrefix));
const isNews = isNewsFile(mdFile);
if (isNews) newsFilePaths.push(mdFile);
if (isNews && localeName === 'en_GB') newsFilePaths.push(mdFile);
let sourceFile = mdFile;