Commit 704e1692a49b5546b30bd1a5f88f0f84015f5d07

Authored by Henry Schreiner
1 parent 3bdbbd78

Fix book links

book/README.md
... ... @@ -28,7 +28,7 @@ Like any good command line application, help is provided. This program can be im
28 28  
29 29 [include](code/intro.cpp)
30 30  
31   -[Source code](https://gitlab.com/CLIUtils/CLI11Tutorial/blob/master/code/intro.cpp)
  31 +[Source code](https://github.com/CLIUtils/CLI11/blob/master/book/code/intro.cpp)
32 32  
33 33 Unlike some other libraries, this is enough to exit correctly and cleanly if help is requested or if incorrect arguments are passed. You can try this example out for yourself. To compile with GCC:
34 34  
... ... @@ -58,7 +58,7 @@ This guide was based on CLI11 1.7.
58 58 [GooFit]: https://github.com/GooFit/GooFit
59 59 [DIANA/HEP]: http://diana-hep.org
60 60 [CLI11]: https://github.com/CLIUtils/CLI11
61   -[CLI11Tutorial]: https://gitlab.com/CLIUtils/CLI11Tutorial
  61 +[CLI11Tutorial]: https://cliutils.github.io/CLI11/book
62 62 [releases]: https://github.com/CLIUtils/CLI11/releases
63 63 [API docs]: https://cliutils.github.io/CLI11
64 64 [README]: https://github.com/CLIUtils/CLI11/blob/master/README.md
... ...
book/chapters/an-advanced-example.md
... ... @@ -18,7 +18,7 @@ All that's need now is the parse call. We'll print a little message after the co
18 18  
19 19 [include:"Parse"](../code/geet.cpp)
20 20  
21   -[Source code](https://gitlab.com/CLIUtils/CLI11Tutorial/blob/master/code/flags.cpp)
  21 +[Source code](https://github.com/CLIUtils/CLI11/tree/master/book/code/geet.cpp)
22 22  
23 23 If you compile and run:
24 24  
... ...
book/chapters/flags.md
... ... @@ -73,7 +73,7 @@ The values would be used like this:
73 73  
74 74 [include:"usage"](../code/flags.cpp)
75 75  
76   -[Source code](https://gitlab.com/CLIUtils/CLI11Tutorial/blob/master/code/flags.cpp)
  76 +[Source code](https://github.com/CLIUtils/CLI11/tree/master/book/code/flags.cpp)
77 77  
78 78 If you compile and run:
79 79  
... ...