我正在寻找的东西可以让我接受这样的事情:
index.html.template:
<html>
<body>
<# include ("body.html.template") #>
</body>
</html>
正文.html.模板:
Hello World! <# include("text.txt") #>
文本.txt:
4
并把它变成这样:
<html>
<body>
Hello World! 4
</body>
</html>
虽然示例是 HTML,但我最终可能会在很多奇怪的地方使用类似的东西。我认为那里有许多预处理器。是否有适合此任务的非常基本的?