Compare commits

...

4 commits

Author SHA1 Message Date
BILLET Vincent
a6bfbe88dd
Update README.md 2019-05-13 18:58:14 +02:00
BILLET Vincent
206815939b
Update LISEZMOI.md 2019-05-13 18:48:52 +02:00
BILLET Vincent
d11e8b0dc9
Update README.md 2019-05-13 18:47:45 +02:00
BILLET Vincent
29c43db138
Update README.md 2019-05-13 18:47:28 +02:00
2 changed files with 3 additions and 1 deletions

View file

@ -1,4 +1,5 @@
# Script md.php
[![GitHub version](https://badge.fury.io/gh/vbillet%2FMarkDown.svg)](https://badge.fury.io/gh/vbillet%2FMarkDown)<br/>
Ce script PHP a pour but de permettre le rendu de fichiers MarkDown (.md) en utilisant Apache et PHP. Tant que le script est installé, vous pouvez demander des fichiers .md à votre navigateur, et les voir correctement formatés en HTML. Par exemple : http://www.mywebsite.com/README.md sera affiché au format HTML au lieu du texte plein.
## Installation
Téléchargez le script sur [GitHub.com](https://github.com/vbillet/MarkDown).

View file

@ -1,4 +1,5 @@
# md.php Script
[![GitHub version](https://badge.fury.io/gh/vbillet%2FMarkDown.svg)](https://badge.fury.io/gh/vbillet%2FMarkDown)<br/>
This PHP script aims to render MarkDown (.md) files using Apache and PHP. As long as the script is installed, you can request .md files from your browser, and see them correctly formatted in HTML. For instance : http://www.mywebsite.com/README.md will be displayed in HTML instead of full text.
## Installation
@ -50,7 +51,7 @@ $Markdown = new Markdown();
$htmlMarkDown = $Markdown->text("Hello, this is a **MarkDown** string.");
echo($htmlMarkDown);
````
##References
## References
This script is based on the following scripts:
* [MarkDown Parser in PHP](https://parsedown.org/)
* [W3Shcool CSS Framework](https://www.w3schools.com/w3css/default.asp)