add static images to repo

This commit is contained in:
Lieuwe Leene
2021-09-19 13:59:43 +02:00
parent 1c7d6955da
commit 9ed1d150cc
4 changed files with 64 additions and 1 deletions

View File

@ -0,0 +1,15 @@
#!/bin/awk
BEGIN{style_flag=0}
/<style>/{
style_flag=1
}
//{
if(style_flag == 0) print $0
}
/<\/style>/{
style_flag=0
print f1
}