我一直在处理我的简历,并决定放弃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是包含AssetCollection
的{{1}}。
我认为分号可能与它有关。这是css files being used的链接。
答案 0 :(得分:1)
Colon将当前行视为上一行的定义。
示例:
Markdown
: A nifty little tool to write richly formatted text using plain text formatting!
Stackoverflow
: A community of brilliant minds.