parsedown/tests/index.php
hkdobrev 87c0b4264a Renamed tests/tests to tests/test_data
When looking at your folder structure, it is easier to grasp that the .md and .html files are just your data for the tests
2013-07-20 09:06:33 +03:00

13 lines
175 B
PHP

<?php
include '../Parsedown.php';
$page = $_SERVER['QUERY_STRING']
? 'test'
: 'index';
$dir = 'test_data/';
include $page.'_controller.php';
include $page.'_view.php';