Get your hashtags

I don't know whether there is a simpler way to get all your hashtags you used in your write.as blog. They are present in the content of course, but also as a link that gets all the instances of the hashtag like: https:yoursite.as/tag:*. So instead of looking to all the tags in your content, you could search for these tag-links on the blog. I found a way to get the total sitemap with 'wget'.

wget --spider --recursive --no-verbose --output-file=wgetlog.txt http://somewebsite.com
sed -n "s@.\+ URL:\([^ ]\+\) .\+@\1@p" wgetlog.txt | sed "s@&@\&@" > sedlog.txt

With mistynotes you will get:

(...)
https://mistynotes.nl/bij-wordpress-com-blijven-of-uitvliegen
https://mistynotes.nl/tag:javascript
https://mistynotes.nl/tag:bookmarklet
https://mistynotes.nl/tag:browser
https://mistynotes.nl/tag:hacks
https://mistynotes.nl/tag:static
https://mistynotes.nl/tag:website
https://mistynotes.nl/tag:css
https://mistynotes.nl/tag:publii
https://mistynotes.nl/tag:monopolie
https://mistynotes.nl/tag:monopoly
https://mistynotes.nl/tag:kapitalisme
https://mistynotes.nl/tag:boek
(...)

You could filter out the tags with another operation like
grep ^.*tag:.*$ sedlog.txt > greplog.txt But it is easy enough to select the tags, copy them and place them in links, like:

<a href="https://mistynotes.nl/tag:browser">browser</a> 
<a href="https://mistynotes.nl/tag:hacks">hacks</a> 
<a href="https://mistynotes.nl/tag:static">static</a> 
<a href="https://mistynotes.nl/tag:website">website</a> 

And you can format this in a list or whatever you like.