mirror of
https://github.com/NishiOwO/chimera.git
synced 2025-04-21 08:34:39 +00:00
24 lines
748 B
Plaintext
24 lines
748 B
Plaintext
#
|
|
# use in-content-type out-content-type command
|
|
#
|
|
|
|
# Conversions for inline images
|
|
inline application/postscript image/gif pstopnm %s | pnmquant 256 | pamtogif
|
|
inline image/png image/gif pngtopnm %s | pnmquant 256 | pamtogif
|
|
inline image/jpeg image/gif jpegtopnm %s | pnmquant 256 | pamtogif
|
|
|
|
# just do a download
|
|
ftp application/x-compress * none
|
|
ftp application/x-gzip * none
|
|
|
|
# Deal with transfer/content encodings
|
|
x-compress * * zcat < %s
|
|
x-gzip * * zcat < %s
|
|
|
|
# Misc. conversions
|
|
* text/x-compress-html text/html zcat < %s
|
|
* text/x-gzip-html text/html zcat < %s
|
|
* message/ text/html echo '<plaintext>'; cat %s
|
|
* x-unknown/x-unknown text/html echo '<plaintext>'; cat %s
|
|
* application/news-transmission text/html echo '<plaintext>'; cat %s
|