diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-15 14:58:37 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-15 14:58:37 +0200 |
| commit | 70670e129ef09acfb28be013d06f2773b5a7d04d (patch) | |
| tree | 7114a0986c71c4d298799796c0056943c920795c /examples/html/README.md | |
| parent | 07c59a83d1255e9772afd13299955bf710bbe988 (diff) | |
Add HTML serializer example
Diffstat (limited to 'examples/html/README.md')
| -rw-r--r-- | examples/html/README.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/html/README.md b/examples/html/README.md new file mode 100644 index 0000000..ac89287 --- /dev/null +++ b/examples/html/README.md @@ -0,0 +1,25 @@ +# HTML serializer example + +This example shows a minimal application that serializes a HTML file +and writes it to standard output. + +## How to build + +If using `make(1)`, just run `make` from this directory. + +If using CMake, examples are built by default when configuring the project +from [the top-level `CMakeLists.txt`](../../CMakeLists.txt). + +## How to run + +Run the executable without any command line arguments. The following text +should be written to the standard output: + +``` +<html> + <head> + <meta charset="UTF-8"/> + </head> + <body>testing slweb</body> +</html> +``` |
