# code-block-pro/1.28.0/build/shiki/samples/haml.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.28.0. 41 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.28.0/code/build/shiki/samples/haml.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.28.0/raw/build/shiki/samples/haml.sample
- Modified: 2023-09-03T01:04:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.28.0/code/build/shiki/samples/haml.sample#L10-L20`.

```
!!! 5
%html
	%head
		%title Example HAML
		/[if IE]
			%link{ :rel => "stylesheet", :href => "/css/ie.css" }
	%body
		#container
			%header
				%h1 Our Awesome HTML5 Template
			#main
				Did we mention this was awesome?

				/ Only this line will be wrapped in a comment
				%blockquote
					%p Roads? Where we're going we don't need roads

				/
					Now the whole block will be commented out
					%blockquote
						%p Roads? Where we're going we don't need roads

				%p The line below won't appear in the HTML
				-# The rest of this line is a comment
				%p The line above won't appear in the HTML, nor will the lines underneath
				-#
					None of this text will appear in our
					rendered output

				%p= Time.now

			%footer
				%address
					.hcard
						.fn Ian Oxley
						.adr
							.locality Newcastle-upon-Tyne
							.country-name England

/ From https://gist.github.com/ianoxley/1147666

```
