Skip to content

Commit 2e9268f

Browse files
authored
Fix markdown formatting for 2 underlines
new_note_spa is shown as new note spa with false formatting because the underlines are wrongly interpreted if not escaped
1 parent 8a4fc73 commit 2e9268f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/0/en/part0b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ Open the <i>Network</i> tab and empty it. When you now create a new note, you'll
513513
514514
![Network tab in developer tools](../../images/0/26e.png)
515515
516-
The POST request to the address <i>new_note_spa</i> contains the new note as JSON data containing both the content of the note (<i>content</i>) and the timestamp (<i>date</i>):
516+
The POST request to the address <i>new\_note\_spa</i> contains the new note as JSON data containing both the content of the note (<i>content</i>) and the timestamp (<i>date</i>):
517517
518518
```js
519519
{
@@ -570,7 +570,7 @@ var sendToServer = function(note) {
570570
The code determines that the data is to be sent with an HTTP POST request and the data type is to be JSON. The data type is determined with a <i>Content-type</i> header. Then the data is sent as JSON string.
571571
572572
The application code is available at <https://github.com/mluukkai/example_app>.
573-
It's worth remembering that the application is only meant to demonstrate the concepts of the course. The code follows a poor style of development in some measures, and should not be used as an example when creating your applications. The same is true for the URLs used. The URL <i>new_note_spa</i> that new notes are sent to, does not adhere to current best practices.
573+
It's worth remembering that the application is only meant to demonstrate the concepts of the course. The code follows a poor style of development in some measures, and should not be used as an example when creating your applications. The same is true for the URLs used. The URL <i>new\_note\_spa</i> that new notes are sent to, does not adhere to current best practices.
574574
575575
### JavaScript-libraries
576576

0 commit comments

Comments
 (0)