fix rich images
This commit is contained in:
parent
70ab0d1556
commit
06fa61e148
2 changed files with 9 additions and 0 deletions
|
@ -114,6 +114,8 @@ export const convertHtmlToLines = (html) => {
|
|||
} else {
|
||||
handleOpen(tagFull)
|
||||
}
|
||||
} else {
|
||||
textBuffer += tagFull
|
||||
}
|
||||
} else {
|
||||
textBuffer += tagFull
|
||||
|
|
|
@ -69,6 +69,13 @@ describe('html_line_converter', () => {
|
|||
const comparableResult = result.map(mapOnlyText(processorKeep)).join('')
|
||||
expect(comparableResult).to.eql(inputOutput)
|
||||
})
|
||||
|
||||
it('fed with some recognized but not handled elements', () => {
|
||||
const inputOutput = 'testing images\n\n<img src="benis.png">'
|
||||
const result = convertHtmlToLines(inputOutput)
|
||||
const comparableResult = result.map(mapOnlyText(processorKeep)).join('')
|
||||
expect(comparableResult).to.eql(inputOutput)
|
||||
})
|
||||
})
|
||||
describe('with processor that replaces lines with word "_" should match expected line when', () => {
|
||||
const processorReplace = (line) => '_'
|
||||
|
|
Loading…
Reference in a new issue