このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
最近の更新
https://www.dokuwiki.org/plugin:codeprettify#examples_usage
<code:php linenums:1 |Example #1 Our first PHP script: //hello.php//> <html> <head> <title>PHP Test</title> </head> <body> <?php echo '<p>Hello World</p>'; ?> </body> </html>
</code>
Example #1 Our first PHP script: hello.php
<html> <head> <title>PHP Test</title> </head> <body> <?php echo '<p>Hello World</p>'; ?> </body> </html>
下記のようにすると、旧タグの<code>を上書きしてくれます。
lib/plugins/codeprettify/conf/default.php
$conf['override'] = 0; // override DW syntax disabled ↓ $conf['override'] = 1; // override DW syntax disabled
下記を編集すればスキンを変更できます。
lib/plugins/codeprettify/conf/default.php
$conf['skin'] = ''; ↓ $conf['skin'] = 'desert.css';
デフォルトで下記4つのスキンが用意されています。
desert.css
doxy.css
sons-of-obsidian.css
sunburst.css
下記のCSSを持ってきて利用もできます。
http://jmblog.github.io/color-themes-for-google-code-prettify/