interfax / interfax-java

Fax send and receive in Java with the InterFAX REST API
https://www.interfax.net/en/dev/java
MIT License
5 stars 9 forks source link

Add syntax highlighting to README #5

Closed cbetta closed 8 years ago

cbetta commented 8 years ago

@anuragkapur can we please add some syntax highlighting to the code samples?

You currently used indentation to make code samples:

    InterFAXClient interFAXClient = new InterFAXJerseyClient();
    APIResponse apiResponse = interFAXClient.hideFax("667915469");

If you replace this with backticks you can specify a language as well and get syntax highlighted code.

```java
InterFAXClient interFAXClient = new InterFAXJerseyClient();
APIResponse apiResponse = interFAXClient.hideFax("667915469");

Like this:

``` java
InterFAXClient interFAXClient = new InterFAXJerseyClient();
APIResponse apiResponse = interFAXClient.hideFax("667915469");
anuragkapur commented 8 years ago

@cbetta - done: https://github.com/interfax/interfax-java/blob/master/README.md

cbetta commented 8 years ago

Excellent. :+1: