|
4 | 4 | <img src="https://img.shields.io/badge/license-apache_2-yellow?style=flat-square">
|
5 | 5 | <img src="https://img.shields.io/badge/current_release-4.1-blue.svg?style=flat-square">
|
6 | 6 | <img src="https://img.shields.io/badge/dev_version-4.3-purple.svg?style=flat-square">
|
7 |
| - <a href='https://ldpl.readthedocs.io'><img src="https://img.shields.io/badge/docs-80%25_up_to_date-yellow?style=flat-square"></a> |
| 7 | + <a href='https://docs.ldpl-lang.org/'><img src="https://img.shields.io/badge/docs-up_to_date-green?style=flat-square"></a> |
8 | 8 | <a href="https://www.freenode.net"><img src="https://img.shields.io/badge/irc-%23ldpl-orange?style=flat-square"></a>
|
9 | 9 | <a href="https://travis-ci.org/Lartu/ldpl"><img src="https://img.shields.io/travis/Lartu/ldpl/master?style=flat-square"></a>
|
10 | 10 | </p>
|
@@ -85,7 +85,7 @@ You can use any other editor (without syntax highlighting) if you like. If know
|
85 | 85 |
|
86 | 86 | If you want to learn how to code in LDPL, there's a little **tutorial** at https://learnxinyminutes.com/docs/ldpl/.
|
87 | 87 |
|
88 |
| -[The **LDPL documentation** is available here](https://ldpl.readthedocs.io). Check that to learn yourself some LDPL (*for the greater good!*). The documentation is also uploaded to the [ldpl-docs](https://github.com/lartu/ldpl-docs) GitHub repository and can be read and forked from there. |
| 88 | +[The **LDPL documentation** is available here](https://docs.ldpl-lang.org/). Check that to learn yourself some LDPL (*for the greater good!*). The documentation is also uploaded to the [docs](docs) folder of this repository and can be read and modified from there. |
89 | 89 |
|
90 | 90 | The LDPL documentation can also be found on your system using `man ldpl` when you install LDPL by using `make install`. The man page is also
|
91 | 91 | available in the [man](/man) folder of this repository.
|
@@ -113,7 +113,7 @@ Done! For more info on the compiler run `ldpl -h`.
|
113 | 113 |
|
114 | 114 | LDPL supports extensions written in C++. Extensions are `.cpp`, `.o`, or `.a` files that can be imported into your program using the `EXTENSION` statement. For example `extension "myLibrary.cpp"`. You can also use the `-i` compiler flag, but this is not recommended for ease of distribution.
|
115 | 115 |
|
116 |
| -For a guide to writing and building C++ extensions, see [LDPL's official documentation](https://ldpl.readthedocs.io/cppext/). For a simple example, see the [examples/cpp-extension](./examples/cpp-extension) directory. |
| 116 | +For a guide to writing and building C++ extensions, see [LDPL's official documentation](https://docs.ldpl-lang.org//cppext/). For a simple example, see the [examples/cpp-extension](./examples/cpp-extension) directory. |
117 | 117 |
|
118 | 118 | ## 🏛 Libraries
|
119 | 119 |
|
|
0 commit comments