Skip to content

Commit d21a559

Browse files
author
deepthought
committed
Fix unclosed tag error
Which is caused from `:::` in markdown files. I need to fix it orginal file in `book` directory to escape from error.
1 parent 60dd7a8 commit d21a559

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

book/coming_from_bash.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ This behavior extends to "Edit command-line in Editor" as well. While Bash immed
107107
executes the command after exiting the editor, Nushell (like other, more modern shells
108108
such as Fish and Zsh) inserts the editor contents into the command-line, allowing you
109109
to review and make changes before committing it to execution.
110-
:::
110+
:::

ko/book/coming_from_bash.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ $env.Path = ($env.Path | prepend 'C:\Program Files\Git\usr\bin')
8888
| ------------------------------------ | ------------------------------------------------------------- | ----------------------------------------------------------------- |
8989
| `!!` | `!!` | 히스토리에서 마지막 명령줄을 삽입합니다. |
9090
| `!$` | `!$` | 히스토리에서 마지막으로 공간으로 구분된 토큰을 삽입합니다. |
91-
| `!<n>` (예: `!5`) | `!<n>` | 히스토리 시작부터 <n>번째 명령을 삽입합니다. |
91+
| `!&lt;n&gt;` (예: `!5`) | `!&lt;n&gt;` | 히스토리 시작부터 &lt;n&gt;번째 명령을 삽입합니다. |
9292
| | | 팁: `history \| enumerate \| last 10`을 사용하여 최근 위치를 표시합니다. |
93-
| `!<-n>` (예: `!-5`) | `!<-n>` | 히스토리 끝에서 <n>번째 명령을 삽입합니다. |
94-
| `!<string>` (예: `!ls`) | `!<string>` | 문자열로 시작하는 가장 최근 히스토리 항목을 삽입합니다. |
93+
| `!&lt;-n&gt;` (예: `!-5`) | `!&lt;-n&gt;` | 히스토리 끝에서 &lt;n&gt;번째 명령을 삽입합니다. |
94+
| `!&lt;string&gt;` (예: `!ls`) | `!&lt;string&gt;` | 문자열로 시작하는 가장 최근 히스토리 항목을 삽입합니다. |
9595
| <kbd>Ctrl/Cmd</kbd>+<kbd>R</kbd> | <kbd>Ctrl/Cmd</kbd>+<kbd>R</kbd> | 역방향 히스토리 검색 |
9696
| (Emacs 모드) <kbd>Ctrl</kbd>+<kbd>X</kbd><kbd>Ctrl</kbd>+<kbd>E</kbd> | <kbd>Ctrl/Cmd</kbd>+<kbd>O</kbd> | `$env.EDITOR`에 정의된 편집기에서 명령줄을 편집합니다. |
9797
| (Vi 명령 모드) <kbd>V</kbd> | <kbd>Ctrl/Cmd</kbd>+<kbd>O</kbd> | `$env.EDITOR`에 정의된 편집기에서 명령줄을 편집합니다. |

ko/book/stdout_stderr_exit_codes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ cat unknown.txt | complete
5656

5757
## `echo`, `print``log` 명령
5858

59-
[`echo`](/commands/docs/echo.md) 명령은 주로 _파이프_용입니다. 파이프된 값을 무시하고 인수를 반환합니다. 일반적으로 값을 있는 그대로 작성하는 것보다 이것을 사용할 이유는 거의 없습니다.
59+
[`echo`](/commands/docs/echo.md) 명령은 주로 *파이프*용입니다. 파이프된 값을 무시하고 인수를 반환합니다. 일반적으로 값을 있는 그대로 작성하는 것보다 이것을 사용할 이유는 거의 없습니다.
6060

6161
반면에 [`print`](/commands/docs/print.md) 명령은 주어진 값을 일반 텍스트로 표준 출력에 인쇄합니다. 표준 오류 출력에 쓰는 데도 사용할 수 있습니다. [`echo`](/commands/docs/echo.md)와 달리 이 명령은 값을 반환하지 않습니다(`print | describe`는 "nothing"을 반환함). 이 명령에는 출력이 없으므로 다른 명령과 파이프하는 것은 의미가 없습니다.
6262

6363
[표준 라이브러리](/book/standard_library.md)에는 다른 로깅 수준으로 메시지를 작성하는 명령이 있습니다. 예시:
6464

6565
@[code](@snippets/book/std_log.nu)
6666

67-
![로그 메시지 예제](../assets/images/0_79_std_log.png)
67+
![로그 메시지 예제](../../assets/images/0_79_std_log.png)
6868

6969
출력의 로그 수준은 `NU_LOG_LEVEL` 환경 변수로 설정할 수 있습니다.
7070

0 commit comments

Comments
 (0)