aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial/step_00.ngdoc
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/tutorial/step_00.ngdoc')
-rw-r--r--docs/content/tutorial/step_00.ngdoc5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc
index b6ea975c..22bbe158 100644
--- a/docs/content/tutorial/step_00.ngdoc
+++ b/docs/content/tutorial/step_00.ngdoc
@@ -77,7 +77,8 @@ The HTML page that displays "Nothing here yet!" was constructed with the HTML co
The code contains some key Angular elements that we will need as we progress.
__`app/index.html`:__
-<pre>
+
+```html
<!doctype html>
<html lang="en" ng-app>
<head>
@@ -93,7 +94,7 @@ __`app/index.html`:__
</body>
</html>
-</pre>
+```