From 04a4940f596d18fd101e40e132f3c844833eb801 Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 22 Mar 2014 13:41:19 +0000 Subject: [PATCH] Add zero-width spaces to enable emphasis to work Fix the bolding for AJAX and JSON in a similar way to as was done for http in https://github.com/codebar/tutorials/pull/71 --- js/lesson4/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/lesson4/tutorial.md b/js/lesson4/tutorial.md index cae723f2..c012b5d1 100644 --- a/js/lesson4/tutorial.md +++ b/js/lesson4/tutorial.md @@ -46,7 +46,7 @@ HTTP Verbs are the actions performed when the server receives a request. #AJAX -AJAX is a way of updating websites asynchronously, without having to reload them. It stands for **A**synchronous **Ja**vascript and **X**ML. +AJAX is a way of updating websites asynchronously, without having to reload them. It stands for ​**A**​synchronous ​**Ja**​vascript and ​**X**​ML. ##Request using JavaScript @@ -76,7 +76,7 @@ To be able to utilise the response we get, we need to convert it to `JSON`. JSON.parse(response) ``` -> JSON stands for **J**ava**S**cript **O**bject **N**otation. +> JSON stands for ​**J**​ava​**S**​cript ​**O**​bject ​**N**​otation. ##Exercise 1 - Retrieve GitHub user information