I'm using the package tm.
I have a corpus full of html document and I would like to remove everything but the html tags. I've been trying to do that for a few days but I don't seem to be able to find any good solution :(
for example, let's say I have a document like this :
<html>
<body>
<h1>hello</h1>
</body>
</html>
I would want the document to become like this :
<html> <body> <h1>
(or with the closing tags, i don't really mind)
My goal is to count how many time each tag is used in a document.
I hope I made myself clear, thanks for your help.