aboutsummaryrefslogtreecommitdiff
path: root/tools/convert.php
blob: 2f57d6ac0de39a389fac355d0fa47befa48b6a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env php
<?php
require 'lib/converter/base.php';
require 'lib/converter/restructuredtext.php';

if ($argc != 2) {
    echo "Tomboy note file name missing\n";
    exit(1);
}

$file = $argv[1];
$conv = new \OCA\Grauphel\Converter\ReStructuredText();
echo $conv->convert(file_get_contents($file));
?>