alef-backend-php 0.17.0

PHP (ext-php-rs) backend for alef
Documentation
1
2
3
4
5
6
7
8
9
10
11
/**
 * Callback interface for custom HTML traversal and transformation.
 *
 * Implement this interface and pass your implementation to `ConversionOptions::$visitor`
 * to customize how the HTML document is traversed and converted to Markdown.
 *
 * All methods have default no-op implementations that return `VisitResult::Continue`.
 * Override only the methods you need.
 */
interface {{ interface_name }}
{