1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
This source code file is distributed subject to the terms of the Mozilla Public License v2.0.
A copy of this license can be found in the `licenses` directory at the root of this project.
*/
/// Links
pub mod a;
/// The `<body>` tag.
pub mod body;
/// The `<br>` (new line) tag.
pub mod br;
/// The `<div>` tag.
pub mod div;
/// The `<form>` tag.
pub mod form;
/// The `<head>` tag.
pub mod head;
/// The heading tags (h1 to h6).
pub mod headings;
/// The `<html>` tag.
pub mod html;
/// The `<img>` tag.
pub mod img;
/// The `<input>` tag.
pub mod input;
/// The `<label>` tag.
pub mod label;
/// The `<meta>` tag.
pub mod meta;
/// The `<noscript>` tag.
/// rendering.
pub mod noscript;
/// The `<option>` tag.
pub mod option;
/// The `<p>` (paragraph) tag.
pub mod p;
/// The `<select>` tag.
pub mod select;
/// The `<style>` tag.
pub mod style;
/// The `<title>` tag.
pub mod title;