-
Notifications
You must be signed in to change notification settings - Fork 18
Add in XML definition #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
labs/coding-101-rest-basics-ga/2.md
Outdated
@@ -40,4 +40,6 @@ In this example, you request the list of hosts, and that information is returned | |||
|
|||
(<a href="http://www.json.org/" target="_blank">JSON</a> -- JavaScript Object Notation, is a lightweight text-based open standard designed for human-readable data interchange.) | |||
|
|||
(<a href="http://https://www.w3schools.com/xml/xml_whatis.asp/" target="_blank">XML</a> -- Extensible Markup Language, a language designed to store and transport data.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a double http then https here, plus I think you can delete the end slash /. And usually I see the acronym spelled out with a capital X, like eXtensible.
Holler if you want help with the git commit --amend
and then git push
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I didn't catch the link problem previously. Looks like the pushes are working!
labs/coding-101-rest-basics-ga/2.md
Outdated
@@ -40,6 +40,6 @@ In this example, you request the list of hosts, and that information is returned | |||
|
|||
(<a href="http://www.json.org/" target="_blank">JSON</a> -- JavaScript Object Notation, is a lightweight text-based open standard designed for human-readable data interchange.) | |||
|
|||
(<a href="http://https://www.w3schools.com/xml/xml_whatis.asp/" target="_blank">XML</a> -- Extensible Markup Language, a language designed to store and transport data.) | |||
(<a href="https://www.w3schools.com/xml/xml_whatis.asp/" target="_blank">XML</a> -- eXtensible Markup Language, a language designed to store and transport data.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, this link gives a 404 with that trailing /
- change https://www.w3schools.com/xml/xml_whatis.asp/
to https://www.w3schools.com/xml/xml_whatis.asp
and it works.
Added XML link with short description https://www.w3schools.com/xml/xml_whatis.asp
@annegentle
Fixes #5