Convert HTML to Markdown.

This commit is contained in:
Julian Wollrath 2015-02-26 15:15:25 +01:00 committed by Daniel Hahler
parent 12f8be1824
commit f66b52463d
1 changed files with 5 additions and 5 deletions

View File

@ -8,11 +8,11 @@
-- Grab keyboard input and read pressed keys, calling a callback function at -- Grab keyboard input and read pressed keys, calling a callback function at
-- each keypress, until `keygrabber.stop` is called. -- each keypress, until `keygrabber.stop` is called.
-- The callback function receives three arguments: -- The callback function receives three arguments:
-- <ul> --
-- <li>a table containing modifiers keys</li> -- * a table containing modifiers keys
-- <li>a string with the pressed key</li> -- * a string with the pressed key
-- <li>a string with either "press" or "release" to indicate the event type.</li> -- * a string with either "press" or "release" to indicate the event type.
-- </ul> --
-- @param callback A callback function as described above. -- @param callback A callback function as described above.
-- @function run -- @function run
-- @usage The following function can be bound to a key, and will be used to -- @usage The following function can be bound to a key, and will be used to