Compare commits

2 Commits
next ... main

Author SHA1 Message Date
Ralf Zerres
3f1afe8efc Merge branch 'next' 2024-10-17 12:30:39 +02:00
Ralf Zerres
574cda5dc0 Internationalization support via mdbook-i18n-helper
* include links to the github sources
* prepare hint on howto create other language versions
2024-10-17 12:02:47 +02:00
2 changed files with 25 additions and 1 deletions

View File

@@ -154,7 +154,7 @@ $ MDBOOK_BOOK__src=src_de mdbook build --dest-dir book_de --open
The rendered HTML output will be placed underneath the The rendered HTML output will be placed underneath the
`book_de` subdirectory. Since we appended the `--open` parameter, your default browser should be fired up and ... tada! `book_de` subdirectory. Since we appended the `--open` parameter, your default browser should be fired up and ... tada!
!--> -->
#### 🛠️ Development #### 🛠️ Development
================== ==================

View File

@@ -116,18 +116,42 @@
//! //!
//! _Firefox:_ //! _Firefox:_
//! ```console //! ```console
<<<<<<< HEAD
//! $ firefox book/en/html/index.html # Linux
//! $ open -a "Firefox" book_en/html/index.html # OS X
//! $ Start-Process "firefox.exe" .\book_en\html\index.html # Windows (PowerShell)
//! $ start firefox.exe .\book_en\html\index.html # Windows (Cmd)
||||||| 1d3c838a
//! $ firefox book/en/html/index.html # Linux
//! $ open -a "Firefox" book/en/html/index.html # OS X
//! $ Start-Process "firefox.exe" .\book\en\html\index.html # Windows (PowerShell)
//! $ start firefox.exe .\book\en\html\index.html # Windows (Cmd)
=======
//! $ firefox book_en/html/index.html # Linux //! $ firefox book_en/html/index.html # Linux
//! $ open -a "Firefox" book_en/html/index.html # OS X //! $ open -a "Firefox" book_en/html/index.html # OS X
//! $ Start-Process "firefox.exe" .\book_en\html\index.html # Windows (PowerShell) //! $ Start-Process "firefox.exe" .\book_en\html\index.html # Windows (PowerShell)
//! $ start firefox.exe .\book_en\html\index.html # Windows (Cmd) //! $ start firefox.exe .\book_en\html\index.html # Windows (Cmd)
>>>>>>> next
//! ``` //! ```
//! //!
//! _Chrome:_ //! _Chrome:_
//! ```console //! ```console
<<<<<<< HEAD
//! $ google-chrome book/en/html/index.html # Linux
//! $ open -a "Google Chrome" book_en/html/index.html # OS X
//! $ Start-Process "chrome.exe" .\book_en\html\index.html # Windows (PowerShell)
//! $ start chrome.exe .\book_en\html\index.html # Windows (Cmd)
||||||| 1d3c838a
//! $ google-chrome book/en/html/index.html # Linux
//! $ open -a "Google Chrome" book/en/html/index.html # OS X
//! $ Start-Process "chrome.exe" .\book\en\html\index.html # Windows (PowerShell)
//! $ start chrome.exe .\book\en\html\index.html # Windows (Cmd)
=======
//! $ google-chrome book_en/html/index.html # Linux //! $ google-chrome book_en/html/index.html # Linux
//! $ open -a "Google Chrome" book_en/html/index.html # OS X //! $ open -a "Google Chrome" book_en/html/index.html # OS X
//! $ Start-Process "chrome.exe" .\book_en\html\index.html # Windows (PowerShell) //! $ Start-Process "chrome.exe" .\book_en\html\index.html # Windows (PowerShell)
//! $ start chrome.exe .\book_en\html\index.html # Windows (Cmd) //! $ start chrome.exe .\book_en\html\index.html # Windows (Cmd)
>>>>>>> next
//! ``` //! ```
//! //!
//! Executing `mdbook serve` will have **mdbook** act has a web service //! Executing `mdbook serve` will have **mdbook** act has a web service