nemhugo/exampleSite/content/post/2016-03-08-code-sample.md
Michael Romero ff7cd6fd91 Initial Checkin of Beautiful Hugo Theme
Initial Checkin of Beautiful Hugo Theme
2016-03-08 02:43:08 -08:00

443 B

title description date
Code Sample Using Pygments 2016-03-08

The following is a code sample using the "highlight" shortcode provided in Hugo.

{{< highlight javascript >}} var num1, num2, sum num1 = prompt("Enter first number") num2 = prompt("Enter second number") sum = parseInt(num1) + parseInt(num2) // "+" means "add" alert("Sum = " + sum) // "+" means combine into a string {{</ highlight >}}