I build a parser which is basically rarely found in the internet that is convert the html formatted text into the json contextually.
Like
<html>
<h1> Price </h1>
<p> price of this module is $10 only <p>
</html>
json format
generally you find in this manner
{
"h1": "Price"
"p" : "price of this module is $10 only"
}
But my parser generate like
{
"title" : "Price"
"content" : "price of this module is $10 only "
}
It will help you to store data in database and in extraction for better reading and understanding