@@ -9,27 +9,27 @@ designed with automation in mind.
99
1010## Table of Contents
1111
12- - [ Features] ( #features )
12+ * [ Features] ( #features )
1313
14- - [ Examples] ( #examples )
14+ * [ Examples] ( #examples )
1515
16- - [ Print URL as PDF] ( #print-url-as-pdf )
17- - [ Node Debugging] ( #node-debugging )
16+ * [ Print URL as PDF] ( #print-url-as-pdf )
17+ * [ Node Debugging] ( #node-debugging )
1818
1919## Features
2020
21- - Promise API for async/await (most debugger commands are meant to be sequential).
22- - TypeScript support and uses "devtools-protocol" types, allowing you to pick a protocol version.
23- - Launches Chrome with a new temp user data folder so Chrome launches an isolated instance.
21+ * Promise API for async/await (most debugger commands are meant to be sequential).
22+ * TypeScript support and uses "devtools-protocol" types, allowing you to pick a protocol version.
23+ * Launches Chrome with a new temp user data folder so Chrome launches an isolated instance.
2424 (regardless if you already have Chrome open).
25- - Opens Chrome with a pipe message transport to the browser connection and supports
25+ * Opens Chrome with a pipe message transport to the browser connection and supports
2626 attaching flattened session connections to targets.
27- - Supports cancellation in a way that avoids unhandled rejections, and allows you to add combine
27+ * Supports cancellation in a way that avoids unhandled rejections, and allows you to add combine
2828 additional cancellation concerns.
29- - Supports seeing protocol debug messages with ` DEBUG=chrome-debugging-client:* `
30- - Use with race-cancellation library to add timeouts or other cancellation concerns to tasks
29+ * Supports seeing protocol debug messages with ` DEBUG=chrome-debugging-client:* `
30+ * Use with race-cancellation library to add timeouts or other cancellation concerns to tasks
3131 using the connection.
32- - The library was designed to be careful about not floating promises (promises are
32+ * The library was designed to be careful about not floating promises (promises are
3333 chained immediately after being created, combining concurrent promises with all
3434 or race), this avoids unhandled rejections.
3535
0 commit comments