diff options
Diffstat (limited to 'docs/content/misc')
| -rw-r--r-- | docs/content/misc/contribute.ngdoc | 21 | ||||
| -rw-r--r-- | docs/content/misc/faq.ngdoc | 14 | ||||
| -rw-r--r-- | docs/content/misc/started.ngdoc | 16 |
3 files changed, 24 insertions, 27 deletions
diff --git a/docs/content/misc/contribute.ngdoc b/docs/content/misc/contribute.ngdoc index bd94f630..0e495870 100644 --- a/docs/content/misc/contribute.ngdoc +++ b/docs/content/misc/contribute.ngdoc @@ -23,24 +23,24 @@ for how to contribute your own code to AngularJS. Before you can build AngularJS, you must install and configure the following dependencies on your machine: -* {@link http://git-scm.com/ Git}: The {@link https://help.github.com/articles/set-up-git Github Guide to -Installing Git} is a good source of information. +* [Git](http://git-scm.com/): The [Github Guide to +Installing Git](https://help.github.com/articles/set-up-git) is a good source of information. -* {@link http://nodejs.org Node.js}: We use Node to generate the documentation, run a +* [Node.js](http://nodejs.org): We use Node to generate the documentation, run a development web server, run tests, and generate distributable files. Depending on your system, you can install Node either from source or as a pre-packaged bundle. -* {@link http://www.java.com Java}: We minify JavaScript using our -{@link https://developers.google.com/closure/ Closure Tools} jar. Make sure you have Java (version 6 or higher) installed -and included in your {@link http://docs.oracle.com/javase/tutorial/essential/environment/paths.html PATH} variable. +* [Java](http://www.java.com): We minify JavaScript using our +[Closure Tools](https://developers.google.com/closure/) jar. Make sure you have Java (version 6 or higher) installed +and included in your [PATH](http://docs.oracle.com/javase/tutorial/essential/environment/paths.html) variable. -* {@link http://gruntjs.com Grunt}: We use Grunt as our build system. Install the grunt command-line tool globally with: +* [Grunt](http://gruntjs.com): We use Grunt as our build system. Install the grunt command-line tool globally with: ```shell npm install -g grunt-cli ``` -* {@link http://bower.io/ Bower}: We use Bower to manage client-side packages for the docs. Install the `bower` command-line tool globally with: +* [Bower](http://bower.io/): We use Bower to manage client-side packages for the docs. Install the `bower` command-line tool globally with: ```shell npm install -g bower @@ -51,9 +51,8 @@ Bower globally. ## Forking Angular on Github -To create a Github account, follow the instructions {@link https://github.com/signup/free here}. -Afterwards, go ahead and {@link http://help.github.com/forking fork} the {@link -https://github.com/angular/angular.js main AngularJS repository}. +To create a Github account, follow the instructions [here](https://github.com/signup/free). +Afterwards, go ahead and [fork](http://help.github.com/forking) the [main AngularJS repository](https://github.com/angular/angular.js). ## Building AngularJS diff --git a/docs/content/misc/faq.ngdoc b/docs/content/misc/faq.ngdoc index 535464f6..18beca12 100644 --- a/docs/content/misc/faq.ngdoc +++ b/docs/content/misc/faq.ngdoc @@ -72,12 +72,12 @@ The size of the file is < 36KB compressed and minified. ### Can I use the open-source Closure Library with Angular? -Yes, you can use widgets from the {@link http://code.google.com/closure/library Closure Library} +Yes, you can use widgets from the [Closure Library](http://code.google.com/closure/library) in Angular. ### Does Angular use the jQuery library? -Yes, Angular can use {@link http://jquery.com/ jQuery} if it's present in your app when the +Yes, Angular can use [jQuery](http://jquery.com/) if it's present in your app when the application is being bootstrapped. If jQuery is not present in your script path, Angular falls back to its own implementation of the subset of jQuery that we call {@link api/angular.element jQLite}. @@ -95,7 +95,7 @@ framework, provides mocks for many heavy dependencies (server-side communication ### How can I learn more about Angular? Watch the July 17, 2012 talk -"{@link http://www.youtube.com/watch?v=1CpiB3Wk25U AngularJS Intro + Dependency Injection}". +"[AngularJS Intro + Dependency Injection](http://www.youtube.com/watch?v=1CpiB3Wk25U)". ### How is Angular licensed? @@ -104,10 +104,8 @@ The {@link https://github.com/angular/angular.js/blob/master/LICENSE MIT License ### Can I download and use the Angular logo artwork? -Yes! You can find design files in our github repository, under "{@link https://github.com/angular/angular.js/tree/master/images/logo -angular.js/images/logo}" -The logo design is licensed under a "{@link http://creativecommons.org/licenses/by-sa/3.0/ -Creative Commons Attribution-ShareAlike 3.0 Unported License}". If you have some other use in mind, contact us. +Yes! You can find design files in our github repository, under "[angular.js/images/logo](https://github.com/angular/angular.js/tree/master/images/logo)" +The logo design is licensed under a "[Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/)". If you have some other use in mind, contact us. ### How can I get some AngularJS schwag? @@ -119,7 +117,7 @@ they'll waive the setup costs, and you can order any quantity you need. For orders of 250 stickers or more within Canada or the United States, contact Tom Witting (or anyone in sales) via email at tom@stickergiant.com, and tell him you want to order some AngularJS stickers just like the ones in job #42711. You'll have to give them your own info for billing and shipping. -As long as the design stays exactly the same, {@link http://www.stickergiant.com StickerGiant} will give you a reorder discount. +As long as the design stays exactly the same, [StickerGiant](http://www.stickergiant.com) will give you a reorder discount. For a smaller order, or for other countries, we suggest downloading the logo artwork and making your own. diff --git a/docs/content/misc/started.ngdoc b/docs/content/misc/started.ngdoc index f078aebe..a6301fa7 100644 --- a/docs/content/misc/started.ngdoc +++ b/docs/content/misc/started.ngdoc @@ -10,7 +10,7 @@ becoming an Angular expert. 1. Do the {@link tutorial/ AngularJS Tutorial}.<br/>Walk end-to-end through building an application complete with tests on top of a node.js web server. Covers every major AngularJS feature and show you how to set up your development environment. -1. Download or clone the {@link https://github.com/angular/angular-seed Seed App project template}.<br/>Gives you a +1. Download or clone the [Seed App project template](https://github.com/angular/angular-seed).<br/>Gives you a starter app with a directory layout, test harness, and scripts to begin building your application. @@ -20,18 +20,18 @@ becoming an Angular expert. If you haven’t had a chance to watch the videos from the homepage, please check out: -* {@link http://www.youtube.com/watch?v=WuiHuZq_cg4&list=PL173F1A311439C05D&context=C48ac877ADvjVQa1PpcFONnl4Q5x8hqvT6tRBTE-m0-Ym47jO3PEE%3D Introduction to AngularJS} -* {@link http://www.youtube.com/watch?v=Yg-R1gchccg&list=PL173F1A311439C05D&context=C48ac877ADvjVQa1PpcFONnl4Q5x8hqvT6tRBTE-m0-Ym47jO3PEE%3D Creating Directives} -* {@link http://www.youtube.com/watch?v=IRelx4-ISbs&list=PL173F1A311439C05D&context=C48ac877ADvjVQa1PpcFONnl4Q5x8hqvT6tRBTE-m0-Ym47jO3PEE%3D Communicating with Servers} +* [Introduction to AngularJS](http://www.youtube.com/watch?v=WuiHuZq_cg4&list=PL173F1A311439C05D&context=C48ac877ADvjVQa1PpcFONnl4Q5x8hqvT6tRBTE-m0-Ym47jO3PEE%3D) +* [Creating Directives](http://www.youtube.com/watch?v=Yg-R1gchccg&list=PL173F1A311439C05D&context=C48ac877ADvjVQa1PpcFONnl4Q5x8hqvT6tRBTE-m0-Ym47jO3PEE%3D) +* [Communicating with Servers](http://www.youtube.com/watch?v=IRelx4-ISbs&list=PL173F1A311439C05D&context=C48ac877ADvjVQa1PpcFONnl4Q5x8hqvT6tRBTE-m0-Ym47jO3PEE%3D) -And visit our {@link http://www.youtube.com/user/angularjs YouTube channel} for more AngularJS video presentations and +And visit our [YouTube channel](http://www.youtube.com/user/angularjs) for more AngularJS video presentations and tutorials. ##Subscribe -* Subscribe to the {@link http://groups.google.com/forum/?fromgroups#!forum/angular mailing list}. Ask questions here! -* Follow us on {@link https://twitter.com/intent/follow?original_referer=http%3A%2F%2Fangularjs.org%2F®ion=follow_link&screen_name=angularjs&source=followbutton&variant=2.0 Twitter} -* Add us to your circles on {@link https://plus.google.com/110323587230527980117/posts Google+} +* Subscribe to the [mailing list](http://groups.google.com/forum/?fromgroups#!forum/angular). Ask questions here! +* Follow us on [Twitter](https://twitter.com/intent/follow?original_referer=http%3A%2F%2Fangularjs.org%2F®ion=follow_link&screen_name=angularjs&source=followbutton&variant=2.0) +* Add us to your circles on [Google+](https://plus.google.com/110323587230527980117/posts) ##Read more |
