]> git.lizzy.rs Git - rust.git/blobdiff - crates/ide/src/syntax_highlighting/html.rs
Code blocks with tilde also works like code block
[rust.git] / crates / ide / src / syntax_highlighting / html.rs
index 5af73e6976d60cff8009563020219b0752067933..9777c014c7a1648f933f88ead4341f2b14e1a903 100644 (file)
@@ -47,7 +47,7 @@ fn rainbowify(seed: u64) -> String {
 
 //FIXME: like, real html escaping
 fn html_escape(text: &str) -> String {
-    text.replace("<", "&lt;").replace(">", "&gt;")
+    text.replace('<', "&lt;").replace('>', "&gt;")
 }
 
 const STYLE: &str = "
@@ -71,6 +71,7 @@ fn html_escape(text: &str) -> String {
 .operator.unsafe    { color: #BC8383; }
 .mutable.unsafe     { color: #BC8383; text-decoration: underline; }
 .keyword.unsafe     { color: #BC8383; font-weight: bold; }
+.macro.unsafe       { color: #BC8383; }
 .parameter          { color: #94BFF3; }
 .text               { color: #DCDCCC; }
 .type               { color: #7CB8BB; }
@@ -80,6 +81,7 @@ fn html_escape(text: &str) -> String {
 .numeric_literal    { color: #BFEBBF; }
 .bool_literal       { color: #BFE6EB; }
 .macro              { color: #94BFF3; }
+.derive             { color: #94BFF3; font-style: italic; }
 .module             { color: #AFD8AF; }
 .value_param        { color: #DCDCCC; }
 .variable           { color: #DCDCCC; }