How to extract articles from html files?

You can try this plugin for wordpress: wordpress . org/plugins/import-html-pages/

I've used it before a few times with success. If your html files are local, maybe you could install wamp and run wordpress on localhost so you can do this. It looks complicated, but it does work well if you set the plugin right.



Thank You very much! Will try :)
 
You can try this plugin for wordpress: https://wordpress.org/plugins/import-html-pages/

I've used it before a few times with success. If your html files are local, maybe you could install wamp and run wordpress on localhost so you can do this. It looks complicated, but it does work well if you set the plugin right.


This works great, a lot time saved and no need these all changes with notepad++ and file conversions!!! ;)
 
Do you know "iconico" probably is the software you are looking for.
 
Yet another opportunity for Yahoo Pipes to show its versatility. You can simply use a pipe to pull the feed, and then some simple regex commands to convert it to straight text. Done it since 2009, and it still works. Check into it!
 
If there are too many files to do manually, just hire a freelance coder to build a small parser. Would be cheap and fast.
 
Irobotsoft has some built-in functions to get the content and title of html pages. For example, to extract main content, use function htql(page, '&html_main_text'), to get title use function htql(page, '&html_title').
 
Back
Top