in src/main/scala/htmlToJsonTranslator/Main.scala [60:67]
def generateTag(node: Node): HelpArticleTag = {
node.nodeName() match {
case "b" => BoldTag()
case "i" => ItalicTag()
case "#text" => TextTag(content = node.toString)
case "p" => ParagraphTag()
}
}