diff --git a/docs/DEVELOPER/debugging/socket-based-debugger.md b/docs/DEVELOPER/debugging/socket-based-debugger.md index 3a019484..268e482a 100644 --- a/docs/DEVELOPER/debugging/socket-based-debugger.md +++ b/docs/DEVELOPER/debugging/socket-based-debugger.md @@ -68,7 +68,6 @@ struct HandshakeFromDVP { }; ``` -{` @@ -141,7 +140,6 @@ struct HandshakeFromDVP {
-`}
The behavior after the handshake has been executed, depends on the version of the BrightScript debug protocol being used: @@ -161,7 +159,6 @@ struct DebuggerRequest { }; ``` -{` @@ -262,7 +259,6 @@ struct DebuggerRequest {
-`}
## Debugger Response Format @@ -279,7 +275,6 @@ struct DebuggerResponse { }; ``` -{` @@ -380,7 +375,6 @@ struct DebuggerResponse {
-`}

@@ -398,7 +392,6 @@ struct DebuggerUpdate { }; ``` -{` @@ -547,7 +540,6 @@ struct DebuggerUpdate {
-`}
### AllThreadsStopped diff --git a/docs/DEVELOPER/dev-tools/external-control-api.md b/docs/DEVELOPER/dev-tools/external-control-api.md index a5ab5f58..035aabb6 100644 --- a/docs/DEVELOPER/dev-tools/external-control-api.md +++ b/docs/DEVELOPER/dev-tools/external-control-api.md @@ -128,7 +128,6 @@ commands to the Roku device. ### General ECP commands -{` @@ -179,7 +178,6 @@ commands to the Roku device.
CommandDescriptionRequired Device Settings
inputSends custom events to the current application. It takes a user defined list of name-value pairs sent as query string URI parameters. The external control server places these name-value pairs into an associative array, and passes them directly through to the currently executing app script using a Message Port attached to a created roInput object.

[Input Command Conventions](doc:external-control-api#input-command-conventions) includes detailed recommendations on how to pass your data.

Messages of type [roInputEvent](doc:roinputevent) have a GetInfo() method that will obtain the associative array. The arguments must be URL-encoded.

This command is sent using an HTTP POST with no body. Example: POST /input?acceleration.x=0.0&acceleration.y=0.0&acceleration.z=9.8
-`}
## Input command conventions