1<?php 2/** 3 * DokuPrism Plugin - Code highlighter using [prismjs.com] library 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Adam Mnemnonic <adam85mn@gmail.com> 7 */ 8$svg = '<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">'. 9 '<text y="75%" textLength="16" lengthAdjust="spacingAndGlyphs" font-size="12" >'.$_GET['label'].'</text>'. 10 '</svg>'; 11 12header('Content-type: image/svg+xml'); 13print($svg);