我正在创建这样的文本文件:
Coffescript:
file = for post in posts
"#{post.title}\n\n#{post.content}\n\n"
Javascrit:
file = (function() {
var _i, _len, _results;
_results = [];
for (_i = 0, _len = posts.length; _i < _len; _i++) {
post = posts[_i];
_results.push("" + post.title + "\n\n" + post.content + "\n\n");
}
return _results;
})();
输出如下内容:
["Chapter 1↵↵<p>As I made my way uphill, I understoo… of the woods, and continued my way uphill.</p>↵↵", "Chapter 2↵↵<p>I hadn't seen An-Mei for nearly six …pths of my heart, waiting to be awoken.</p><br>↵↵", "Chapter 3↵↵<p>"Sure they allow visitors?" I asked …ht?”</p><p>She gave her head another shake.</p>↵↵", "Chapter 4↵↵<p>Back in the hotel, I thought about w…leading the way—we ventured into the woods.</p>↵↵", "Notes↵↵<p>- Search places where only one word can be used </p>↵↵", "Experiment↵↵<p>There was no one in the streets. I … realized it was a fireplace. </p><p>"</p>↵↵", "Untitled↵↵↵↵"]
现在我想将文本文件转换为HTML文档,因此我想修改file
以输出如下内容:
["<html>...", "Chapter 1↵↵<p>As I made my way uphill...]
也许做这样的事情:
file.attachHeader
file.attachFooter
最简单的方法(使用CoffeScript,JS或Underscore.js)?
答案 0 :(得分:1)