Plugin Directory

Changeset 727151


Ignore:
Timestamp:
06/16/2013 03:54:19 PM (13 years ago)
Author:
rewish
Message:

WP Hatena Notation 2.0.4 Released

Location:
wp-hatena-notation/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-hatena-notation/trunk/readme.txt

    r707962 r727151  
    4242== Changelog ==
    4343
     44= 2.0.4 =
     45* 互換性維持のため`wphn_render()`を追加
     46
    4447= 2.0.3 =
    4548* 改行の扱いで「何もしない」以外を選んだ場合`wpautop`フィルタを無効化
  • wp-hatena-notation/trunk/wp-hatena-notation.php

    r707957 r727151  
    33Plugin Name: WP Hatena Notation
    44Plugin URI: https://github.com/rewish/wp-hatena-notation
    5 Description: あなたのWordPressに「はてな記法」を導入します。
    6 Version: 2.0.3
     5Description: WordPressに「はてな記法」を導入します。
     6Version: 2.0.4
    77Author: rewish
    88Author URI: https://github.com/rewish
     
    1717// Global instance
    1818$wp_hatena_notation = new WP_Hatena_Notation('wp-hatena-notation');
     19
     20// Function to maintain compatibility with 1.x
     21function wphn_render($content) {
     22    global $wp_hatena_notation;
     23    return $wp_hatena_notation->render($content);
     24}
Note: See TracChangeset for help on using the changeset viewer.