forked from 20xd6/simple_blog
Place Markdown parsing in a function
This commit is contained in:
parent
b4c852a3c1
commit
d719bcf101
@ -1,11 +1,15 @@
|
||||
<?php
|
||||
#Markdown parser dependancy
|
||||
require ($_SERVER['DOCUMENT_ROOT'].'/common/vendor/autoload.php');
|
||||
#Markdown parseing code.
|
||||
$MD_Parser = new ParsedownExtra();
|
||||
$MD_Path = "article.md";
|
||||
$MD_File = fopen($MD_Path, "r") or die("File not found.");
|
||||
$MD_Text = fread($MD_File, filesize($MD_Path));
|
||||
function read_md($md_path){
|
||||
#Markdown parseing code.
|
||||
$MD_Parser = new ParsedownExtra();
|
||||
$MD_Path = $md_path;
|
||||
$MD_File = fopen($MD_Path, "r") or die("File not found.");
|
||||
$MD_Text = fread($MD_File, filesize($MD_Path));
|
||||
$MD_Parser->text($MD_Text);
|
||||
fclose($MD_File);
|
||||
}
|
||||
echo "<article id=\"article\">\n" . /* Adds the option to change the font size of the article text. */
|
||||
"<div id=\"font_btns\">
|
||||
Text Size:
|
||||
@ -24,8 +28,8 @@
|
||||
<li><a href=\"article.md\" title=\"Download \">MD</a></li>
|
||||
</nav>
|
||||
".
|
||||
$MD_Parser->text($MD_Text) . "\n</article>";
|
||||
fclose($MD_File);
|
||||
read_md("article.md") . "\n</article>";
|
||||
|
||||
echo "\n</div><!--End of print-content div-->\n";
|
||||
echo("<nav class=\"jmenu\"><div class=\"pmenu\"><ul id=\"back_btn\"><li><a href='..'>Back</a></li></ul></div></nav>\n");
|
||||
if ($tag_data != NULL){
|
||||
|
Loading…
x
Reference in New Issue
Block a user