Skip to content

Commit

Permalink
README: add highlighting of ABAP code
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp authored Oct 9, 2019
1 parent 014d5e6 commit ec7c41a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ The following Watson services are currently supported:
Using the client library requires two steps:

1. Create an instance of the Watson service wrapper ABAP class by calling method `zcl_ibmc_service_ext=>get_instance`.
```
```abap
data:
lo_service_class type <ABAP Class Name>.
Expand All @@ -214,7 +214,7 @@ Using the client library requires two steps:
```

2. Call the Watson service API endpoint by invoking the corresponding class method.
```
```abap
try.
lo_service_class->method(
exporting
Expand All @@ -229,7 +229,7 @@ Using the client library requires two steps:
<details>
<summary>Text to Speech Example</summary>

```
```abap
* List all voices provided by Watson Text to Speech
" declare variables
Expand Down Expand Up @@ -269,7 +269,7 @@ Using the client library requires two steps:
<details>
<summary>Natural Language Understanding Example</summary>

```
```abap
* Analyze www.ibm.com using Watson Natural Language Understanding
" declare variables
Expand Down Expand Up @@ -318,7 +318,7 @@ Using the client library requires two steps:
<details>
<summary>Personality Insights Example</summary>

```
```abap
* Analyze profile using example text using Watson Personality Insights
" declare variables
Expand Down Expand Up @@ -375,7 +375,7 @@ Using the client library requires two steps:
<details>
<summary>Language Translator Example</summary>

```
```abap
* Translate text from English to German using Watson Language Translator
" declare variables
Expand Down

0 comments on commit ec7c41a

Please sign in to comment.