1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-markdown.git synced 2024-06-26 01:50:43 +03:00

Added more detailed installation instructions.

This commit is contained in:
Gary Stidston-Broadbent 2010-07-13 00:27:23 +08:00
parent e60c3298e4
commit e77bc2914c

View file

@ -18,7 +18,7 @@ as headers, *emphasis*, code blocks, blockquotes, and links.
Markdown's syntax is designed not as a generic markup language, but Markdown's syntax is designed not as a generic markup language, but
specifically to serve as a front-end to (X)HTML. You can use span-level specifically to serve as a front-end to (X)HTML. You can use span-level
HTML tags anywhere in a Markdown document, and you can use block level HTML tags anywhere in a Markdown document, and you can use block level
HTML tags (like <div> and <table> as well). HTML tags (like `<div>` and `<table>` as well).
For more information about Markdown's syntax, see: For more information about Markdown's syntax, see:
<http://daringfireball.net/projects/markdown/> <http://daringfireball.net/projects/markdown/>
@ -31,12 +31,12 @@ For more information about Markdown's syntax, see:
a github key configured. Please check the github documentation for more a github key configured. Please check the github documentation for more
details. details.
git clone git@github.com:stroppytux/kohana-markdown.git markdown git clone git@github.com:stroppytux/kohana-markdown.git modules/markdown
This should give you the following (in the markdown directory): This should give you the following *(in the modules/markdown directory)*:
README.md classes config classes config README.md
2. ### Configure Markdown ### 2. ### Configure Markdown ###
@ -48,7 +48,8 @@ For more information about Markdown's syntax, see:
3. ### Enable Markdown ### 3. ### Enable Markdown ###
In order to enable the markdown module, edit the application/bootstrap.php In order to enable the markdown module, edit the application/bootstrap.php
file and add and enable the markdown module. file and add and enable the markdown module within the `Kohana::modules`
section of the bootstrap file.
'markdown' => MODPATH.'markdown', // Markdown module 'markdown' => MODPATH.'markdown', // Markdown module