我一直在處理我的簡歷,並決定放棄單詞文檔並切換到降價。我分叉markdown-resume並一直致力於移植我的簡歷,但遇到了一些問題。我並不是很熟悉降價和CSS,但我設法改變了一些我喜歡的東西。Markdown中的':'有什麼作用?
我試圖找出
### 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 base模板,$ style是包含"/assets/css/*.css"
的。
我認爲分號可能與它有關。這是一個鏈接到css files being used。
林在這種情況下那猜測的定界符。對於其中的每一個人,都會採取某種行動。類似於'*'和'_' – chris
那麼,從降價文檔中,'* ... * = _..._ ...'和'** ... ** = __...__ = ...'。不過,我找不到有關分號的事情。 –