我一直在写我的简历,并决定放弃word文档,转而使用markdown。我创建了markdown-resume,并一直在移植我的简历,但遇到了一些问题。我对markdown和css不是很熟悉,但我设法改变了一些我喜欢的东西。
我在试着弄清楚
### Education {#education}
University of Nebraska-Lincoln
: *Bachelor of Science in Computer Engineering*
__2011 - 2015__被翻译成
<dl>
<dt>University of Nebraska-Lincoln</dt>
<dd><em>Bachelor of Science in Computer Engineering</em>
<strong>2011 - 2015</strong></dd>
</dl>我知道build.php运行
$resume = file_get_contents($source);
$resume = Markdown($resume);
$resume = SmartyPants($resume);,然后使用
$m = new Mustache;
$rendered = $m->render(
$template,
array(
'title' => $title,
'style' => $style,
'resume' => $resume,
'reload' => $refresh_dev
)
);其中$template是html基本模板,$style是包含"/assets/css/*.css"的AssetCollection。
我想分号可能与此有关。这里有一个到css files being used的链接。
发布于 2012-10-02 06:55:02
冒号将当前行视为上一行的定义。
示例:
Markdown
: A nifty little tool to write richly formatted text using plain text formatting!
Stackoverflow
: A community of brilliant minds.https://stackoverflow.com/questions/12681791
复制相似问题