1<?php
2
3namespace dokuwiki\plugin\prosemirror\parser;
4
5class WindowsShareLinkNode extends LinkNode
6{
7    public function toSyntax()
8    {
9        $href = $this->attrs['href'];
10        $href = substr($href, strlen('file:///'));
11        $href = str_replace('/', '\\', $href);
12
13        return $this->getDefaultLinkSyntax($href);
14    }
15
16    public static function render($renderer, $link, $title)
17    {
18        self::renderToJSON($renderer, 'other', $link, $title);
19    }
20}
21