wiki-doc.php 928 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. ## This script generates formatted documentation for the demo, in RST format.
  3. header('Content-type: text/plain');
  4. echo 'File: **demo/index.php**' . PHP_EOL;
  5. $codeStart = 1;
  6. foreach (file('index.php') as $lineNumber => $line) {
  7. if (substr(ltrim($line), 0, 2) == '##') {
  8. if ($codeStart !== false) {
  9. echo PHP_EOL;
  10. echo '.. literalinclude:: ../demo/index.php' . PHP_EOL;
  11. echo ' :lines: ' . ($codeStart + 1) . '-' . $lineNumber . PHP_EOL;
  12. echo PHP_EOL;
  13. $codeStart = false;
  14. }
  15. echo str_replace('`', '``', rtrim(substr(ltrim($line), 3))) . PHP_EOL;
  16. } else {
  17. // it's code
  18. if ($codeStart === false) {
  19. $codeStart = $lineNumber;
  20. }
  21. }
  22. }
  23. echo PHP_EOL;
  24. echo '.. literalinclude:: ../demo/index.php' . PHP_EOL;
  25. echo ' :lines: ' . ($codeStart + 1) . '-' . ($lineNumber + 1) . PHP_EOL;
  26. echo PHP_EOL;