mirror of
https://tildegit.org/sbgodin/HtmGem.git
synced 2023-08-25 13:53:12 +02:00
10 lines
273 B
PHP
10 lines
273 B
PHP
<?php if (empty(@$_SERVER['SHELL']) or count($argv)<2) die();
|
|
|
|
$fileName = $argv[1];
|
|
|
|
require_once dirname(__FILE__)."/../lib-htmgem.inc.php";
|
|
|
|
$text = file_get_contents($fileName);
|
|
$parsedGemtext = \htmgem\gemtextParser($text);
|
|
print_r(iterator_to_array($parsedGemtext));
|