Testing edited <code> tags
So I decided to alter how <code> tags should appear
"Inline"-style code samples will appear with this styling.
"Block"-style code will render as such...
import java.util.lang.*;
public class TestYourCode extends SomeExtension {
private final boolean isRunning = true;
public static void start() {
//start program
}
public static void main(String args[]) {
start();
}
}
In that example, syntax highlighting conforms to the Java language. However, it is not
limited to merely java. Here's an example of HTML syntax.
<!DOCTYPE html>
<html>
<head>
<title>Welcome to the website!</title>
<link rel="stylesheet" href="styles/globalstyles.css">
<script type="text/javascript" src="scripts/globalscripts.js"></script>
</head>
<body onload="doSomeJavaScript(pls)">
<div id="bodywrapper">
<p id="intro">
Welcome to our website! Here you will find more
information about our services; in addition, you can
contact us with requests and/or comments!
</p>
</div>
</body>
</html>