使用 Octopress(Jekyll) 时是否有任何关于编写 markdown 的特定规则?
我已经尝试将它粘贴到: http: //markable.in/editor/
,它看起来不错,但是当我使用rake preview
从 markdown 源生成 html 时,它只会生成一个空白页面。
这是导致转换为 html 时出错的第一个代码块。我删除了它,一切正常。但我不知道为什么这段代码不起作用。有没有我可以安装的插件来使解释器(这是它的名字吗?)不那么敏感。或者是否有任何工具可以向我指出源代码到底有什么问题。
```
php artisan generate:migration create_departments_table department:string
php artisan generate:migration create_roles_table department_id:integer role:string
php artisan generate:migration create_transactions_table department_id:integer main_menu:string menu_text:string address:string
php artisan generate:migration create_rolestransactions_table role_id:integer transaction_id:integer status:integer
php artisan generate:migration create_userlogs_table user_id:integer user:string department:string transaction:string dateandtime:timestamp
```
这是来源: https ://gist.github.com/4186168
也许你可以向我指出我做错了什么。也许您可以指出一个链接,指向编写 Markdown 时要遵循的规则,该规则与解释器完美配合。
更新
生成的 html 页面上没有任何内容。我已经安装了斜线主题https://github.com/tommy351/Octopress-Theme-Slash
以下是已安装的插件:
我认为它们中的大多数都是默认插件,因为我不记得安装过插件。如果它可能有帮助,我在 Windows 上。