문제

I want to visualize the document structure of a HTML website.

What I would like to have is something like this:

enter image description here

Are there any known tools that do this and where the results can be saved as a bitmap file?

도움이 되었습니까?

해결책

I use LaTeX to create the DOM representation.

Here is a minimal working example:

\documentclass{scrreprt}
\usepackage{tikz-qtree}
\begin{document}

  \Tree[.table 
         [.thead 
           [.tr 
             [.th [.\textit{Vorname} ] ]
             [.th [.\textit{Nachname} ] ]
           ]
         ]              
         [.tbody 
           [.tr 
             [.td [.\textit{Donald} ] ]
             [.td [.\textit{Duck} ] ]
           ]
         ]
       ]

\end{document}

Which gives:

enter image description here

다른 팁

I've just tried using two libraries.

First I converted the dom to JSON using Jsonml

var jsonData = JsonML.fromHTMLText(htmlData);

Then used Json Editor or Json Viewer for visualizing it

View Samples in jsFiddle

  1. Using Json Editor
  2. Using Json Viewer

Hope this may help you.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top