WMarkDown/PHP/Interfaces/WMarkDown.Interfaces.Modules.php

11 lines
198 B
PHP
Raw Permalink Normal View History

<?php
namespace WMarkDown\Interfaces;
interface Modules{
public function get_next_position($string);
public function process($string, $modules, $level);
};