KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

textilize.php 389B

9 years ago
12345678910111213
  1. <?php
  2. require "lib/textile.php";
  3. class Textilize extends Modules {
  4. public function __init() {
  5. $this->textile = new Textile();
  6. $this->addAlias("markup_text", "textile", 8);
  7. $this->addAlias("preview", "textile", 8);
  8. }
  9. public function textile($text) {
  10. return $this->textile->TextileThis($text);
  11. }
  12. }