You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Converting Newsblur OPML to human-readable "the hard way but pretty"
#Use Notepad++ find+replace. Select Regex option and Replace All.
#First, remove the head
Find: <head>.+<\/head>
Replace with: ""
#Remove newsblur stuff
Find: <opml.+<body>|<\/opml>|<\/body>
Replace with: ""
#Put everything on it's own line
Find: ><outline
Replace with: >\r<outline
#Make the headers
Find: <(outline text=")(.+)" title.+>
Replace with: $2
Finalize and cleanup closed header tag from last step. Replace with "$2 - $3" if you want to use XML url instead, can be more accurate to the feed itself.