README: Provide link to official Matrix space

This commit is contained in:
Nicolas Mailloux 2022-09-05 11:41:45 -04:00
parent 11cb8aef7a
commit 087cfbe837
2 changed files with 2 additions and 1 deletions

View file

@ -43,6 +43,6 @@ If you install the Nickel add-on, unpack the 'base' archive in the root of the o
## I want to learn more about this!
I suggest you visit the [wiki](https://inkbox.ddns.net/wiki). The [General information](https://inkbox.ddns.net/wiki/index.php?title=General_information) page is a pretty good place to start. Feel free to contribute if you think you have something valuable to add.
## How can I contribute?
If you like this project and want to improve it in some way, feel free to fork this repository or [one of the subprojects this organization hosts](https://github.com/Kobo-InkBox), then make a [pull request](https://github.com/Kobo-InkBox/inkbox/pulls). I'll be happy to review it when I have time. You can also join the official [Discord server](https://discord.com/invite/uSWtWbY23m) if you'd like to chat a bit.
If you like this project and want to improve it in some way, feel free to fork this repository or [one of the subprojects this organization hosts](https://github.com/Kobo-InkBox), then make a [pull request](https://github.com/Kobo-InkBox/inkbox/pulls). I'll be happy to review it when I have time. You can also join the official [Matrix space](https://matrix.to/#/#inkbox-os-project:matrix.org) or [Discord server](https://discord.com/invite/uSWtWbY23m) if you'd like to chat a bit.
<br><br>
On the other hand, if you don't have the appropriate coding skills or just want to help in some way, feel free to make a donation at my [PayPal account](https://paypal.me/NicolasMailloux/) or on [LiberaPay](https://liberapay.com/tux-linux/). I'm a student and motivation has been the only thing that has helped me maintain this project for the last months. Developing an entire operating system on my own was not an easy task. I have time, but I like to spend it wisely.

View file

@ -937,6 +937,7 @@ int reader::setup_book(QString book, int i, bool run_parser) {
content << f.readAll();
f.close();
}
// These characters are replaced for consistency with ePUB text handling, highlighting and text alignment.
content[i].replace("\n", "<br>");
content[i].replace("\t", "&nbsp;&nbsp;&nbsp;&nbsp;");
ittext = content[i];