mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-27 10:56:47 +00:00

https://github.com/Unstructured-IO/unstructured/issues/3578 --------- Co-authored-by: qued <64741807+qued@users.noreply.github.com> Co-authored-by: Alan Bertl <alan@unstructured.io>
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>
|
|
``` |