3

我一直在写简历,决定放弃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
    )
);

html 基本模板在哪里,$template而 $style 是一个AssetCollection包含"/assets/css/*.css".

我认为分号可能与它有关。这是正在使用的 css 文件的链接。

4

1 回答 1

1

冒号将当前行视为上一行的定义。

例子:

Markdown
: A nifty little tool to write richly formatted text using plain text formatting!

Stackoverflow
: A community of brilliant minds.
于 2012-10-01T22:55:01.713 回答