mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
fix idx
This commit is contained in:
parent
4bc1246a47
commit
6bfb4842e2
1 changed files with 6 additions and 3 deletions
|
|
@ -318,9 +318,12 @@ const generateSpeechFiles = (rankedItems: RankedItem[]): SpeechFile[] => {
|
|||
})
|
||||
|
||||
const speechFiles = rankedItems.map((item) => {
|
||||
const html = `<div id="readability-page-1">${converter.makeHtml(
|
||||
item.summary
|
||||
)}</div>`
|
||||
const html = `
|
||||
<div id="readability-content">
|
||||
<div id="readability-page-1">
|
||||
${converter.makeHtml(item.summary)}
|
||||
</div>
|
||||
</div>`
|
||||
return htmlToSpeechFile({
|
||||
content: html,
|
||||
options: {},
|
||||
|
|
|
|||
Loading…
Reference in a new issue