Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ch1.md #1741

Open
wants to merge 1 commit into
base: 1ed-zh-CN
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion up & going/ch1.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ JavaScript通常被断言为是 *解释型* 的,因为你的JavaScript源代

有一件事情怎么强调都不过分:在你通读本章时 —— 而且你可能需要花时间读好几遍 —— 你应当通过自己编写代码来实践这些概念中的每一个。最简单的方法就是打开你手边的浏览器(Firefox,Chrome,IE,等等)的开发者工具控制台。

**提示:** 一般来说,你可以使用快捷键或者菜单选项来启动开发者控制台。更多关于启动和使用你最喜欢的浏览器的控制台的细节,参见“精通开发者工具控制台”http://blog.teamtreehouse.com/mastering-developer-tools-console)。要在控制台中一次键入多行,可以使用`<shift> + <enter>` 来移动到下一行。一旦你敲击 `<enter>`,控制台将运行你刚刚键入的任何东西。
**提示:** 一般来说,你可以使用快捷键或者菜单选项来启动开发者控制台。更多关于启动和使用你最喜欢的浏览器的控制台的细节,参见“精通开发者工具控制台”(http://blog.teamtreehouse.com/mastering-developer-tools-console)。 要在控制台中一次键入多行,可以使用`<shift> + <enter>` 来移动到下一行。一旦你敲击 `<enter>`,控制台将运行你刚刚键入的任何东西。
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The bug does exist, but you should fix it by adding a space between 可以使用 and `<shift> + <enter>` , like this:

可以使用<shift> + <enter> => 可以使用 <shift> + <enter>.

After you do that, The color of the content behind the link may not be rendered correctly, but I think this is a problem with github markdown parsing because it shows up correctly in other markdown editors


让我们熟悉一下在控制台中运行代码的过程。首先,我建议你在浏览器中打开一个新的标签页。我喜欢在地址栏中键入`about:blank`来这么做。然后,确认你的开发者控制台是打开的,就像我们刚刚提到的那样。

Expand Down