From f66b52463d39af4182edb93fb81e6c9f3422bc0f Mon Sep 17 00:00:00 2001 From: Julian Wollrath Date: Thu, 26 Feb 2015 15:15:25 +0100 Subject: [PATCH] Convert HTML to Markdown. --- docs/capi/keygrabber.lua.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/capi/keygrabber.lua.in b/docs/capi/keygrabber.lua.in index 321ee46c5..00b082197 100644 --- a/docs/capi/keygrabber.lua.in +++ b/docs/capi/keygrabber.lua.in @@ -8,11 +8,11 @@ -- Grab keyboard input and read pressed keys, calling a callback function at -- each keypress, until `keygrabber.stop` is called. -- The callback function receives three arguments: --- +-- +-- * a table containing modifiers keys +-- * a string with the pressed key +-- * a string with either "press" or "release" to indicate the event type. +-- -- @param callback A callback function as described above. -- @function run -- @usage The following function can be bound to a key, and will be used to