1<?php 2/** 3 * Gist Command - Easy way to embed a gist in Dokuwiki 4 * Usage: %gist(gist_id)% 5 * @license Three Clause BSD 6 * @author Yuvi Panda (http://yuvi.in) 7 */ 8 9class CommandPluginExtension_gist extends CommandPluginExtension 10{ 11 function getCachedData($embedding, $params, $paramHash, $content, &$errorMessage) 12 { 13 return '<script src="http://gist.github.com/' . $content . '.js"></script>'; 14 } 15} 16?>