Changeset 1337107
- Timestamp:
- 01/27/2016 12:15:41 PM (10 years ago)
- Location:
- entity-decode-button/trunk
- Files:
-
- 2 edited
-
entity-decode-button.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
entity-decode-button/trunk/entity-decode-button.php
r1337061 r1337107 4 4 Plugin URI: https://wordpress.org/plugins/entity-decode-button/ 5 5 Description: テキストエディタにentityとdecodeボタンを追加します。 6 Version: 1.0. 16 Version: 1.0.2 7 7 Author: oxynotes 8 8 Author URI: http://oxynotes.com -
entity-decode-button/trunk/readme.txt
r1337061 r1337107 5 5 Requires at least: 4.4.1 6 6 Tested up to: 4.4.1 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 文字を選択した状態で「entity_char」ボタンをクリックすると実体参照化します。PHPのhtmlspecialcharsに相当します。 23 23 24 例)「entity_char」ボタンの変換25 `<div> → &lt;div&gt;`26 27 24 **「entity_num」ボタン** 28 25 29 26 「entity_num」ボタンは10進数の数値文字参照化(文字参照)します。PHPのmb_encode_numericentityに相当します。(改行も変換するので複数行実行する場合は注意) 30 27 31 例)「entity_num」ボタンの変換32 `<div> → &#60;&#100;&#105;&#118;&#62;`33 34 28 **「decode」ボタン** 35 29 36 30 「decode」ボタンは実体参照・文字参照の両方をデコードします。 37 38 例)「decode」ボタンの変換39 `&lt;div&gt; → <div>40 &#60;&#100;&#105;&#118;&#62; → <div>`41 31 42 32 == Installation == … … 56 46 == Changelog == 57 47 58 1.0. 148 1.0.2 59 49 README改定。 60 50
Note: See TracChangeset
for help on using the changeset viewer.