Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 148 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 148 Revision 991
Zeile 11... Zeile 11...
11
 * file that was distributed with this source code.
11
 * file that was distributed with this source code.
12
 */
12
 */
Zeile 13... Zeile 13...
13
 
13
 
Zeile -... Zeile 14...
-
 
14
namespace League\CommonMark;
14
namespace League\CommonMark;
15
 
Zeile 15... Zeile 16...
15
 
16
use League\CommonMark\Exception\CommonMarkException;
16
use League\CommonMark\Output\RenderedContentInterface;
17
use League\CommonMark\Output\RenderedContentInterface;
17
 
18
 
Zeile 25... Zeile 26...
25
    /**
26
    /**
26
     * Converts Markdown to HTML.
27
     * Converts Markdown to HTML.
27
     *
28
     *
28
     * @deprecated since 2.2; use {@link ConverterInterface::convert()} instead
29
     * @deprecated since 2.2; use {@link ConverterInterface::convert()} instead
29
     *
30
     *
30
     * @throws \RuntimeException
31
     * @throws CommonMarkException
31
     */
32
     */
32
    public function convertToHtml(string $markdown): RenderedContentInterface;
33
    public function convertToHtml(string $markdown): RenderedContentInterface;
33
}
34
}