diff --git a/docs/getting-started-tutorial/2-the-lift-menu-system.adoc b/docs/getting-started-tutorial/2-the-lift-menu-system.adoc index dc28ac1559..373db1f283 100644 --- a/docs/getting-started-tutorial/2-the-lift-menu-system.adoc +++ b/docs/getting-started-tutorial/2-the-lift-menu-system.adoc @@ -16,7 +16,7 @@ more complicated. All you have to do for the chat page is add a line to your `SiteMap.scala` that names the page and points to the file in the `webapp` directory: -``` +```src/scala/bootstrap/liftweb/Boot.scala ... Menu.i("Chat") / "chat" ... diff --git a/docs/getting-started-tutorial/3-adding-snippet-bindings.adoc b/docs/getting-started-tutorial/3-adding-snippet-bindings.adoc index 7dc67ac51f..00334f75c9 100644 --- a/docs/getting-started-tutorial/3-adding-snippet-bindings.adoc +++ b/docs/getting-started-tutorial/3-adding-snippet-bindings.adoc @@ -28,13 +28,13 @@ Let's look at our chat app specifically. We're going to bind two things: the list of chat messages, and the text input that lets us actually chat. To the `ol` that contains the chat messages, we add: -``` +```html:src/main/webapp/index.html