From 2b12429e069995ca9688465437b542bccff94cf3 Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Thu, 12 Oct 2017 14:58:35 +0200 Subject: [PATCH] Use underscores for bold text intead of asterixes Makes an asterix-list easier to read in plaintext --- docs/API.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/API.md b/docs/API.md index a5693394..9d7e2f51 100644 --- a/docs/API.md +++ b/docs/API.md @@ -8,21 +8,21 @@ projects (see LICENSE.txt). ## 1.1 Module List -* **Mouse** (core/input/devices.js): Mouse input event handler with +* __Mouse__ (core/input/devices.js): Mouse input event handler with limited touch support. -* **Keyboard** (core/input/devices.js): Keyboard input event handler with +* __Keyboard__ (core/input/devices.js): Keyboard input event handler with non-US keyboard support. Translates keyDown and keyUp events to X11 keysym values. -* **Display** (core/display.js): Efficient 2D rendering abstraction +* __Display__ (core/display.js): Efficient 2D rendering abstraction layered on the HTML5 canvas element. -* **Websock** (core/websock.js): Websock client from websockify +* __Websock__ (core/websock.js): Websock client from websockify with transparent binary data support. [Websock API](https://github.com/kanaka/websockify/wiki/websock.js) wiki page. -* **RFB** (core/rfb.js): Main class that implements the RFB +* __RFB__ (core/rfb.js): Main class that implements the RFB protocol and stitches the other classes together.