All scripts in one repository
This commit is contained in:
parent
a0a86492ee
commit
9f9304d6aa
61 changed files with 6668 additions and 681 deletions
md2html/src
41
md2html/src/strings.php
Normal file
41
md2html/src/strings.php
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
$usage =
|
||||
"
|
||||
md2html converter
|
||||
mmk2410 2015
|
||||
MIT License
|
||||
|
||||
Usage:
|
||||
|
||||
./md2html inputfile [outputfile]
|
||||
|
||||
If no output file is given, the converted code will printed in the console.
|
||||
The input file must be a .md file and the outputfile a html or txt.
|
||||
|
||||
./md2html.php argument
|
||||
|
||||
Available arguments:
|
||||
|
||||
-h | --help
|
||||
Prints this text
|
||||
|
||||
If no output file is given, the converted code will printed in the console.
|
||||
";
|
||||
|
||||
$htmlbegin =
|
||||
"
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
";
|
||||
|
||||
$htmlend =
|
||||
"
|
||||
</body>
|
||||
</html>
|
||||
";
|
Loading…
Add table
Add a link
Reference in a new issue