Skip to content
Snippets Groups Projects
Commit 337f8d56 authored by George Adrian Stoica's avatar George Adrian Stoica
Browse files

fixed formatting in code block

parent fd4d256d
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,8 @@ https://stfalcon.com/uploads/images/55c8bcff18b94.png ...@@ -79,7 +79,8 @@ https://stfalcon.com/uploads/images/55c8bcff18b94.png
== Comments (3) == Comments (3)
``` java [source,java, role="stretch"]
----
/** /**
* Creates a LatLong object from a String, using a specific separator. * Creates a LatLong object from a String, using a specific separator.
* The format is <latitude><separator><longitude>. * The format is <latitude><separator><longitude>.
...@@ -94,10 +95,9 @@ https://stfalcon.com/uploads/images/55c8bcff18b94.png ...@@ -94,10 +95,9 @@ https://stfalcon.com/uploads/images/55c8bcff18b94.png
} }
final double lat = Double.valueOf(s.substring(0, pos).trim()); final double lat = Double.valueOf(s.substring(0, pos).trim());
final double lon = Double.valueOf(s.substring(pos + sep.length()).trim()); final double lon = Double.valueOf(s.substring(pos + sep.length()).trim());
return new LatLong(lat, lon); return new LatLong(lat, lon);
} }
``` ----
== Over-documenting == Over-documenting
...@@ -121,7 +121,7 @@ https://miro.medium.com/max/1138/1*Pyxsc7Uixbitv5myywaA_Q.jpeg (Gary Larson comi ...@@ -121,7 +121,7 @@ https://miro.medium.com/max/1138/1*Pyxsc7Uixbitv5myywaA_Q.jpeg (Gary Larson comi
== Markdown == Markdown
[.center-paragraph] [.center-paragraph]
Markdown is a lightweight markup language with plain text formatting syntax. Its design allows it to be converted to many output formats, but the original tool by the same name only supports HTML.[8] Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor. Markdown is a lightweight markup language with plain text formatting syntax. Its design allows it to be converted to many output formats, but the original tool by the same name only supports HTML. Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.
[.smaller-40] [.smaller-40]
https://en.wikipedia.org/wiki/Markdown https://en.wikipedia.org/wiki/Markdown
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment