From b842642b574a2b95c53b791308ed1bf8ff9d304d Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 15 Jun 2011 22:31:40 -0700 Subject: docs - stripping extra new lines --- docs/content/tutorial/step_00.ngdoc | 42 +------------------------------------ 1 file changed, 1 insertion(+), 41 deletions(-) (limited to 'docs/content/tutorial/step_00.ngdoc') diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc index 09b06109..a8243d47 100644 --- a/docs/content/tutorial/step_00.ngdoc +++ b/docs/content/tutorial/step_00.ngdoc @@ -2,19 +2,14 @@ @name Tutorial: 0 - angular-seed @description - - - You are now ready to build the phonecat application. In this step, you will become familiar with the most important source code files, learn how to start the development servers bundled with angular-seed, and run the application in the browser. - -
    @@ -25,7 +20,6 @@ angular-seed, and run the application in the browser. the number of the step you are on. This will cause any changes you made within your working directory to be lost.

    -
  1. To see the app running in a browser, do one of the following:
    • For node.js users: @@ -50,8 +44,6 @@ directory.
    • - -
      1. Open msysGit bash and run this command (in angular-phonecat directory):

        @@ -84,8 +76,6 @@ directory.
      2. - -
        1. In angular-phonecat directory, run this command:

          @@ -118,8 +108,6 @@ href="http://localhost:8000/app/index.html">http://localhost:8000/app/index.html - -
          1. Open windows command line and run this command (in angular-phonecat directory):

            @@ -153,15 +141,11 @@ href="http://localhost:8000/app/index.html">http://localhost:8000/app/index.html - - You can now see the page in your browser. It's not very exciting, but that's OK. - The static HTML page that displays "Nothing here yet!" was constructed with the HTML code shown below. The code contains some key angular elements that we will need going forward. - __`app/index.html`:__
             
            @@ -173,10 +157,8 @@ __`app/index.html`:__
             
             
             
            -
               Nothing here yet!
             
            -
               
             
             
            @@ -184,73 +166,51 @@ __`app/index.html`:__
             
             
             
            -
            -
            -
             ## What is the code doing?
             
            -
             * xmlns declaration
             
            -
                       
             
            -
               This `xmlns` declaration for the `ng` namespace must be specified in all angular applications in
             order to make angular work with XHTML and IE versions older than 9 (regardless of whether you are
             using XHTML or HTML).
             
            -
             * angular script tag
             
            -