+
+```res example
+module Greetings = {
+ @react.component
+ let make = (~name, ~age) => {
+ {s`hello ${S(name)} you're ${I(age)} year old!`}
+ }
+}
+```
+```js
+function Greetings(props) {
+ return React.createElement("div", undefined, s([
+ "hello ",
+ " you're ",
+ " year old!"
+ ], [
+ {
+ TAG: "S",
+ _0: props.name
+ },
+ {
+ TAG: "I",
+ _0: props.age
+ }
+ ]));
+}
+```
+
+
+
+Pretty neat, isn't it? As you can see, it looks like any regular template literal but it accepts placeholders that are not strings
+and it outputs something that is not a string either, a `React.element` in this case.
\ No newline at end of file
diff --git a/plugins/rescript-highlightjs.js b/plugins/rescript-highlightjs.js
deleted file mode 100644
index 9646b26d8..000000000
--- a/plugins/rescript-highlightjs.js
+++ /dev/null
@@ -1,365 +0,0 @@
-/*
-Language: ReScript
-Author: Gidi Meir Morris