mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-27 19:10:33 +00:00
33 lines
606 B
Markdown
33 lines
606 B
Markdown
![]() |
## HTML Example
|
||
|
|
||
|
```html
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Sample HTML</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Hello, World!</h1>
|
||
|
<p>This is a simple HTML example.</p>
|
||
|
</body>
|
||
|
</html>
|
||
|
```
|
||
|
## XML Example
|
||
|
```xml
|
||
|
<note>
|
||
|
<to>Tove</to>
|
||
|
<from>Jani</from>
|
||
|
<heading>Reminder</heading>
|
||
|
<body>Don't forget me this weekend!</body>
|
||
|
</note>
|
||
|
```
|
||
|
```xml
|
||
|
<note>
|
||
|
<to>Tove</to>
|
||
|
<from>Jani</from>
|
||
|
<heading>Reminder</heading>
|
||
|
<body>Don't forget me this weekend!</body>
|
||
|
</note>
|
||
|
```
|