html_parser_tarasenko 0.1.2

Базовий HTML-парсер на Rust з використанням Pest
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
  <head>
    <title>Test Page</title>
    <meta charset="UTF-8" />
  </head>
  <body>
    <div id="main" class="container">
      <h1>Hello, World!</h1>
      <p>This is a test page for the HTML parser.</p>
      <img src="image.jpg" alt="A sample image" />
      <a href="https://example.com">Visit Example</a>
    </div>
  </body>
</html>