jsx 구현 등?
Template literals - JavaScript | MDN
템플릿 리터럴은 내장된 표현식을 허용하는 문자열 리터럴입니다. 여러 줄로 이뤄진 문자열과 문자 보간기능을 사용할 수 있습니다. 이전 버전의 ES2015사양 명세에서는 "template strings" (템플릿 문자열) 라고 불려 왔습니다. `string text` `string text line 1 string text line 2` `string text ${expression} string text` tag `string text ${expression} string text` 템플릿 리터럴은 이중 따옴표 나 작은 따옴표 대신 백틱(` `) ( grave accent) 을 이용합니다.
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Template_literals

JSX-Like Syntax for Tagged Template Literals in JavaScript
I recently moved my blog off Jekyll. Instead of choosing an off-the-shelf templating framework, I naively decided I would attempt rolling my own. My blog is pretty simple in terms of what needs to be done. A couple pages, a hundred or so posts, and some feed files. Nothing too sophisticated.
https://blog.jim-nielsen.com/2019/jsx-like-syntax-for-tagged-template-literals/

