mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Stop support for old plugin clients
This commit is contained in:
parent
7da56a3433
commit
7c7a55e475
1 changed files with 8 additions and 2 deletions
|
|
@ -647,9 +647,15 @@ export const contentConverter = (
|
|||
): contentConverterFunc | undefined => {
|
||||
switch (format) {
|
||||
case ArticleFormat.Markdown:
|
||||
return htmlToMarkdown
|
||||
return (html: string) => {
|
||||
return ''
|
||||
}
|
||||
// return htmlToMarkdown
|
||||
case ArticleFormat.HighlightedMarkdown:
|
||||
return htmlToHighlightedMarkdown
|
||||
return (html: string) => {
|
||||
return ''
|
||||
}
|
||||
// return htmlToHighlightedMarkdown
|
||||
default:
|
||||
return undefined
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue