An open API service indexing awesome lists of open source software.

https://github.com/benoitc/mimerl

library to handle mimetypes
https://github.com/benoitc/mimerl

Last synced: 11 months ago
JSON representation

library to handle mimetypes

Awesome Lists containing this project

README

          

mimerl
=====

library to handle mimetypes

Present a way to parse IANA mediatype as defined here:
http://www.iana.org/assignments/media-types/media-types.xhtml

Build
-----

$ make

Example of usage:
-----------------

1> mimerl:extension(<<"c">>).
<<"text/x-c">>
2> mimerl:filename(<<"test.cpp">>).
<<"text/x-c">>
3> mimerl:mime_to_exts(<<"text/plain">>).
[<<"txt">>,<<"text">>,<<"conf">>,<<"def">>,<<"list">>,
<<"log">>,<<"in">>]