Skip to content

Commit

Permalink
v7.0.7
Browse files Browse the repository at this point in the history
- Fix issue #116
- Update dependencies
  • Loading branch information
ndaidong committed Nov 6, 2023
1 parent f751faa commit 7abcabc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"imports": {
"cross-fetch": "./src/deno/cross-fetch.js",
"html-entities": "https://esm.sh/[email protected]",
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.2.5",
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.3.2",
"bellajs": "https://esm.sh/[email protected]"
}
}
2 changes: 1 addition & 1 deletion src/utils/parseAtomFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const transform = (item, options) => {
title: getText(title),
link: getPureUrl(link, id, baseUrl),
published: useISODateFormat ? toISODateString(pubDate) : pubDate,
description: buildDescription(summary || htmlContent, descriptionMaxLen),
description: buildDescription(htmlContent, descriptionMaxLen),
}

const extraFields = getExtraEntryFields(item)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/parseRdfFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const transform = (item, options) => {
title: getText(title),
link: getPureUrl(link, guid, baseUrl),
published,
description: buildDescription(description || htmlContent, descriptionMaxLen),
description: buildDescription(htmlContent, descriptionMaxLen),
}

const extraFields = getExtraEntryFields(item)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/parseRssFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const transform = (item, options) => {
title: getText(title),
link: getPureUrl(link, guid, baseUrl),
published,
description: buildDescription(description || htmlContent, descriptionMaxLen),
description: buildDescription(htmlContent, descriptionMaxLen),
}

const extraFields = getExtraEntryFields(item)
Expand Down

0 comments on commit 7abcabc

Please sign in to comment.