CssParser.to_binary
You're seeing just the function
to_binary
, go back to CssParser module for more information.
Specs
Converts a parsed css to binary
After running:
iex> parsed = CssParser.parse("h4, h3 {color: blue; font-size: 20px;}")
You can then get a (formatted) string as follows:
iex> CssParser.to_binary(parsed)
"h4, h3 {
color: blue; font-size: 20px;
}"