askeing / rust-book

Rust 程式語言 正體中文版 (The Rust Programming Language, Traditional Chinese)
http://askeing.github.io/rust-book/
94 stars 24 forks source link

The mdBook will break down some links. #4

Open askeing opened 8 years ago

askeing commented 8 years ago

mdBook will break some links, for example:

[`if`]
[`if`]: test-link

[`Arc<T>`][arc]
[arc]: test-link

above links will break...

3442853561 commented 8 years ago

既然有的連接會出現問題,那麼生成一份排版好的PDF文檔如何?

askeing commented 8 years ago

不是連結出問題,而是當我們使用 markdown 撰寫文件時,如果在中括號 [] 中使用到 `` 符號,mdBook` 這個轉換工具會無法成功的產生連結。

所以原文中如果有 [Apple][apple] 之類的連結時,我們翻譯時必須要注意,需要把中括號中的``拿掉。 例如:應該寫成[蘋果][apple],而不能是[蘋果][apple]`。