diff options
author | redmatrix <mike@macgirvin.com> | 2016-10-05 17:25:49 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-10-05 17:25:49 -0700 |
commit | 2a02b6de4420d08768a05d0ad0f5674bb8f2a85d (patch) | |
tree | ce3e84ac34d4f79ff29eb0e89ed6f6ddb5fe8e8c | |
parent | 21a0498a30f3de1e6236d73d0e8e7619aca86df7 (diff) | |
download | volse-hubzilla-2a02b6de4420d08768a05d0ad0f5674bb8f2a85d.tar.gz volse-hubzilla-2a02b6de4420d08768a05d0ad0f5674bb8f2a85d.tar.bz2 volse-hubzilla-2a02b6de4420d08768a05d0ad0f5674bb8f2a85d.zip |
update hook documentation
-rw-r--r-- | doc/hook/bbcode.bb | 5 | ||||
-rw-r--r-- | doc/hook/bbcode_filter.bb | 7 | ||||
-rw-r--r-- | doc/hooklist.bb | 5 |
3 files changed, 16 insertions, 1 deletions
diff --git a/doc/hook/bbcode.bb b/doc/hook/bbcode.bb index 2996a8528..f6b8711b0 100644 --- a/doc/hook/bbcode.bb +++ b/doc/hook/bbcode.bb @@ -1 +1,6 @@ [h2]bbcode[/h2] + + +Called at end of bbcode to html conversion. + +Hook argument contains the converted text string. diff --git a/doc/hook/bbcode_filter.bb b/doc/hook/bbcode_filter.bb new file mode 100644 index 000000000..efeb2e1b0 --- /dev/null +++ b/doc/hook/bbcode_filter.bb @@ -0,0 +1,7 @@ +[h2]bbcode_filter[/h2] + + +Called at beginning of bbcode to html conversion. + +Hook argument contains the text string to be converted. + diff --git a/doc/hooklist.bb b/doc/hooklist.bb index e48fbee7c..d190166f0 100644 --- a/doc/hooklist.bb +++ b/doc/hooklist.bb @@ -68,7 +68,10 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the called when converting bbcode to markdown [zrl=[baseurl]/help/hook/bbcode]bbcode[/zrl] - Called when converting bbcode to HTML + Called at end of converting bbcode to HTML + +[zrl=[baseurl]/help/hook/bbcode_filter]bbcode_filter[/zrl] + Called when beginning to convert bbcode to HTML [zrl=[baseurl]/help/hook/bb_translate_video]bb_translate_video[/zrl] Called when extracting embedded services from bbcode video elements (rarely used) |