diff --git a/1-js/01-getting-started/2-code-editors/article.md b/1-js/01-getting-started/2-code-editors/article.md index b1b9860f..0d714cdb 100644 --- a/1-js/01-getting-started/2-code-editors/article.md +++ b/1-js/01-getting-started/2-code-editors/article.md @@ -4,8 +4,6 @@ A code editor is the place where programmers spend most of their time. There are two archetypes: IDE and lightweight editors. Many people feel comfortable choosing one tool of each type. -[cut] - ## IDE The term [IDE](https://en.wikipedia.org/wiki/Integrated_development_environment) (Integrated Development Environment) means a powerful editor with many features that usually operates on a "whole project". As the name suggests, that's not just an editor, but a full-scale "development environment". diff --git a/1-js/01-getting-started/3-devtools/article.md b/1-js/01-getting-started/3-devtools/article.md index 34e5c9a7..f250502d 100644 --- a/1-js/01-getting-started/3-devtools/article.md +++ b/1-js/01-getting-started/3-devtools/article.md @@ -10,8 +10,6 @@ Most often developers lean towards Chrome or Firefox for development, because th Developer tools are really powerful, there are many features. To start, we'll learn how to open them, look at errors and run JavaScript commands. -[cut] - ## Google Chrome Open the page [bug.html](bug.html). diff --git a/1-js/02-first-steps/01-hello-world/article.md b/1-js/02-first-steps/01-hello-world/article.md index e69a25f0..69d2ba97 100644 --- a/1-js/02-first-steps/01-hello-world/article.md +++ b/1-js/02-first-steps/01-hello-world/article.md @@ -7,8 +7,6 @@ But, we need a working environment to run our scripts, and, just because this bo So first, let's see how to attach a script to a webpage. For server-side environments, you can just execute it with a command like `"node my.js"` for Node.JS. -[cut] - ## The "script" tag JavaScript programs can be inserted in any part of an HTML document with the help of the `