]>
Commit | Line | Data |
---|---|---|
1 | <?php | |
2 | ||
3 | namespace Shaarli\Formatter; | |
4 | ||
5 | /** | |
6 | * Class BookmarkRawFormatter | |
7 | * | |
8 | * Used to retrieve bookmarks as array with raw values. | |
9 | * Warning: Do NOT use this for HTML content as it can introduce XSS vulnerabilities. | |
10 | * | |
11 | * @package Shaarli\Formatter | |
12 | */ | |
13 | class BookmarkRawFormatter extends BookmarkFormatter | |
14 | { | |
15 | } |