diff options
author | Vadim A. Misbakh-Soloviov <git@mva.name> | 2016-05-09 03:01:17 +0600 |
---|---|---|
committer | Vadim A. Misbakh-Soloviov <git@mva.name> | 2016-05-09 03:01:17 +0600 |
commit | 7afabb891b69faf208b871308c0bf79533c1b88b (patch) | |
tree | 2ca60e1fb879d30e28bee618343a47a5329d864b /Documentation | |
parent | luajit: change src_prep patching according makefile changes (diff) | |
download | lua-7afabb891b69faf208b871308c0bf79533c1b88b.tar.gz lua-7afabb891b69faf208b871308c0bf79533c1b88b.tar.bz2 lua-7afabb891b69faf208b871308c0bf79533c1b88b.zip |
prosody-modules: bump
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/scripts/prosody-modules_bumper.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/scripts/prosody-modules_bumper.lua b/Documentation/scripts/prosody-modules_bumper.lua index c74ef58..e328b15 100755 --- a/Documentation/scripts/prosody-modules_bumper.lua +++ b/Documentation/scripts/prosody-modules_bumper.lua @@ -160,10 +160,15 @@ local function get_flag_desc(flag) if #dom>0 then desc=dom[1]:getcontent(); + if desc:match("^NOTE: ") then + desc=dom[2]:getcontent(); + end end desc=desc and desc:gsub([=[(href=["'])(mod_[^"']+.html)(["'])]=],"%1https://modules.prosody.im/%2%3") + desc=desc and desc.." (info: https://modules.prosody.im/mod_"..flag..")" + return desc or "No documentation yet :(" end |