misc: Added README.md to know how to create the initial data.

main
Abigaëlle Martin 2025-09-23 23:25:34 +02:00
parent b47996b4c1
commit f4a55ee2e4
1 changed files with 13 additions and 0 deletions

13
README.md Normal file
View File

@ -0,0 +1,13 @@
Command to concat all html together to be parsed:
```
echo "<root>" | cat > txt.xml && cat *.html >> txt.xml && echo "</root>" >> txt.xml
```
Image balise to add:
<br><div class="ImageContainer"><img class="Image" src="./img/"></div>
To compress:
tar cvf archive.tar.xz --use-compress-program='xz -1T0' boop.csv
To uncompress:
tar xvf archive.tar.xz --use-compress-program='xz -dT0'