Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

참고

note 명령은 요약을 통해 GitHub 이슈의 최상단 댓글을 업데이트하는 데 사용할 수 있습니다.

사용법

요약 노트는 다음 명령으로 댓글을 작성하여 GitHub 이슈에 추가할 수 있습니다:

@rustbot note summary-title

note 뒤에 오는 단어는 GitHub 이슈의 최상단 댓글에 링크로 추가됩니다:

<!-- TRIAGEBOT_SUMMARY_START -->

### Summary Notes

- ["summary-title" by @username](link-to-comment)

Generated by triagebot, see [help](https://github.com/rust-lang/triagebot/wiki/Note) for how to add more
<!-- TRIAGEBOT_SUMMARY_END -->

note 명령을 게시한 댓글로의 링크와 함께 표시됩니다.

제목 단어는 정규 표현식 [^.,:!?;\n() ]+에 매칭되는 문자열이 될 수 있습니다. 또는 "this is a title"와 같은 따옴표로 묶인 문자열이 될 수도 있습니다.

추가 노트는 목록에 덧붙여집니다:

<!-- TRIAGEBOT_SUMMARY_START -->

### Summary Notes

- ["first-note" by @username](link-to-comment)
- ["second-note" by @username](link-to-comment)
- ["summary-title" by @username](link-to-comment)

<!-- TRIAGEBOT_SUMMARY_END -->

이 요약 섹션은 수동으로 편집해서는 안 됩니다.

기존 요약 제거하기

노트는 @rustbot note remove summary-title 댓글을 작성하여 제거할 수 있으며, 여기서 summary-title은 노트를 생성할 때 사용한 단어입니다. Triagebot는 요약 목록에서 항목을 제거합니다.

설정

[!참고] 이 기능은 rust-lang 조직에서 기본적으로 활성화되어 있습니다.

이 기능은 triagebot.toml[note] 테이블을 두어 활성화합니다:

[note]

구현

parser/src/command/note.rssrc/handlers/note.rs를 참조하십시오.