Node red rss feeder to text

Hello, I'm using the feedparser node for a while. Now the feed provider changed data format and the node does not cooperate.

A feed is looking like this:


<p> <a href="https://www.tagesschau.de/ausland/amerika/impfpflicht-coronavirus-usa-flugreisen-100.html"><img src="upload://t6CMhcj5tLAp2AjUHMRrbF6l8JF.jpeg" alt="Eine Boeing 747 startet vom Flughafen Frankfurt aus in den Abendhimmel (Archivbild).  | dpa"></a> <br/> <br/>Flugreisende müssen ab dem 11. Mai keine Corona-Impfung mehr bei der Einreise in die USA nachweisen. Dann endet auch der Corona-Gesundheitsnotstand, der im Januar 2020 ausgerufen worden war. Von: .[<a href="https://www.tagesschau.de/ausland/amerika/impfpflicht-coronavirus-usa-flugreisen-100.html">mehr</a>]</p>

I want to forward the plain text to a text to speech machine. How do I filter out all the html, irrelevant things from the stream? thank you

You should be able to use the html node.
e.g.

[{"id":"729f41361cab5c46","type":"inject","z":"febe25a17f3bb5df","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"<p> <a href=\"https://www.tagesschau.de/ausland/amerika/impfpflicht-coronavirus-usa-flugreisen-100.html\"><img src=\"upload://t6CMhcj5tLAp2AjUHMRrbF6l8JF.jpeg\" alt=\"Eine Boeing 747 startet vom Flughafen Frankfurt aus in den Abendhimmel (Archivbild).  | dpa\"></a> <br/> <br/>Flugreisende müssen ab dem 11. Mai keine Corona-Impfung mehr bei der Einreise in die USA nachweisen. Dann endet auch der Corona-Gesundheitsnotstand, der im Januar 2020 ausgerufen worden war. Von: .[<a href=\"https://www.tagesschau.de/ausland/amerika/impfpflicht-coronavirus-usa-flugreisen-100.html\">mehr</a>]</p>","payloadType":"str","x":270,"y":280,"wires":[["9ff671f90b436f51"]]},{"id":"91514e98d6e64169","type":"debug","z":"febe25a17f3bb5df","name":"debug 292","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":730,"y":180,"wires":[]},{"id":"9ff671f90b436f51","type":"html","z":"febe25a17f3bb5df","name":"","property":"payload","outproperty":"payload","tag":"p","ret":"text","as":"single","x":390,"y":280,"wires":[["91514e98d6e64169"]]}]

thank you a lot

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.