| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Getting Started with Dart Editor" | 3 title: "Getting Started with Dart Editor" |
| 4 description: "Step-by-step instructions for installing Dart Editor and using it
to create and run Dart apps." | 4 description: "Step-by-step instructions for installing Dart Editor and using it
to create and run Dart apps." |
| 5 js: | 5 js: |
| 6 - url: /js/os-switcher.js | 6 - url: /js/os-switcher.js |
| 7 defer: true | 7 defer: true |
| 8 - url: /js/editor-downloads-analytics.js | 8 - url: /js/editor-downloads-analytics.js |
| 9 defer: true | 9 defer: true |
| 10 - url: /js/editor-version.js |
| 11 defer: true |
| 10 --- | 12 --- |
| 11 | 13 |
| 12 {% include platform-specific-text/_noscript.html %} | 14 {% include platform-specific-text/_noscript.html %} |
| 13 | 15 |
| 14 <h1> {{ page.title }} </h1> | 16 <h1> {{ page.title }} </h1> |
| 15 | 17 |
| 16 <section> | 18 <section> |
| 17 | 19 |
| 18 <p> | 20 <p> |
| 19 Follow this tutorial to install and use Dart Editor on | 21 Follow this tutorial to install and use Dart Editor on |
| 20 <input type="radio" name="osChoices" id="win"> | 22 {% include os-choices.html %} |
| 21 <label class="os-choice" for="win">Windows</label>, | |
| 22 | |
| 23 <input type="radio" name="osChoices" id="linux" checked="true"> | |
| 24 <label class="os-choice" for="linux">Linux</label>, or | |
| 25 | |
| 26 <input type="radio" name="osChoices" id="mac"> | |
| 27 <label class="os-choice" for="mac">Mac</label>. | |
| 28 </p> | 23 </p> |
| 29 | 24 |
| 30 <p> | 25 <p> |
| 31 Dart Editor is a lightweight, open-source editor for Dart code. | 26 Dart Editor is a lightweight, open-source editor for Dart code. |
| 32 You can use it to edit and run Dart apps, | 27 You can use it to edit and run Dart apps, |
| 33 as well as to invoke the Dart-to-JavaScript compiler. | 28 as well as to invoke the Dart-to-JavaScript compiler. |
| 34 For more information about what Dart Editor can do, | 29 For more information about what Dart Editor can do, |
| 35 see the <a href="/docs/editor/">Dart Editor homepage</a>. | 30 see the <a href="/docs/editor/">Dart Editor homepage</a>. |
| 36 If you run into a problem, see | 31 If you run into a problem, see |
| 37 <a href="/docs/editor/troubleshoot.html">Troubleshooting Dart Editor</a>. | 32 <a href="/docs/editor/troubleshoot.html">Troubleshooting Dart Editor</a>. |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 We'll open a new issue for you, if appropriate, | 319 We'll open a new issue for you, if appropriate, |
| 325 without disclosing your sensitive or personally identifiable information. | 320 without disclosing your sensitive or personally identifiable information. |
| 326 </p> | 321 </p> |
| 327 | 322 |
| 328 <p> | 323 <p> |
| 329 Or you can just <a href="http://code.google.com/p/dart/issues/entry?template=Def
ect%20report%20from%20user&labels=Area-Editor,Type-Defect,Priority-Medium">c
reate | 324 Or you can just <a href="http://code.google.com/p/dart/issues/entry?template=Def
ect%20report%20from%20user&labels=Area-Editor,Type-Defect,Priority-Medium">c
reate |
| 330 a new Dart Editor issue.</a> | 325 a new Dart Editor issue.</a> |
| 331 </p> | 326 </p> |
| 332 | 327 |
| 333 </section> | 328 </section> |
| OLD | NEW |