hugo-site/static/images/replace_style.awk

16 lines
136 B
Awk
Raw Normal View History

2021-09-19 13:59:43 +02:00
#!/bin/awk
BEGIN{style_flag=0}
/<style>/{
style_flag=1
}
//{
if(style_flag == 0) print $0
}
/<\/style>/{
style_flag=0
print f1
}