Skip to content

Instantly share code, notes, and snippets.

@shoorick
Created May 11, 2010 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shoorick/397614 to your computer and use it in GitHub Desktop.
Save shoorick/397614 to your computer and use it in GitHub Desktop.
Compressor for HTML generated by kate
#!/usr/bin/perl -pw
use strict;
s{#([[:xdigit:]])\1([[:xdigit:]])\2([[:xdigit:]])\3}{#$1$2$3}g;
s{<(b|i|em|strong)></\1>}{}gi;
s{</(b|i|em|strong)><\1>}{}gi;
@shoorick
Copy link
Author

Улучшает генерируемый редактором kate HTML-код:

  • укорачивает, если возможно, значения цветов;
  • убирает ненужные последовательности <tag></tag> и </tag><tag>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment