A crate for inlining CSS into HTML documents. When you send HTML emails, you need to use "style" attributes instead of "style" tags.
For example, this HTML:
html
<html>
<head>
<title>Test</title>
<style>h1 { color:blue; }</style>
</head>
<body>
<h1>Big Text</h1>
</body>
</html>
Will be turned into this:
html
<html>
<head><title>Test</title></head>
<body>
<h1 style="color:blue;">Big Text</h1>
</body>
</html>
To use it in your project add the following line to your dependencies
section in the project's Cargo.toml
file:
toml
css-inline = "0.6"
```rust use css_inline;
const HTML: &str = r#"
fn main() -> Result<(), cssinline::InlineError> { let inlined = cssinline::inline(HTML)?; // Do something with inlined HTML, e.g. send an email Ok(()) } ```
css-inline
can be configured by using CSSInliner::options()
that implements the Builder pattern:
```rust use css_inline;
fn main() -> Result<(), cssinline::InlineError> { let inliner = cssinline::CSSInliner::options() .loadremotestylesheets(false) .build(); let inlined = inliner.inline(HTML); // Do something with inlined HTML, e.g. send an email Ok(()) } ```
inline_style_tags
. Whether to inline CSS from "style" tags. Default: true
remove_style_tags
. Remove "style" tags after inlining. Default: false
base_url
. Base URL to resolve relative URLs. Default: None
load_remote_stylesheets
. Whether remote stylesheets should be loaded or not. Default: true
extra_css
. Additional CSS to inline. Default: None
css-inline
provides a command-line interface:
```bash $ css-inline --help
css-inline inlines CSS into HTML documents.
USAGE: css-inline [OPTIONS] [PATH ...] command | css-inline [OPTIONS]
ARGS:
OPTIONS:
--inline-style-tags
Whether to inline CSS from "style" tags. The default value is true
. To disable inlining
from "style" tags use -inline-style-tags=false
.
--remove-style-tags
Remove "style" tags after inlining.
--base-url
Used for loading external stylesheets via relative URLs.
--load-remote-stylesheets
Whether remote stylesheets should be loaded or not.
--extra-css
Additional CSS to inline.
```
If you have anything to discuss regarding this library, please, join our gitter!