readme: mention hosted docs

This commit is contained in:
outfoxxed 2024-03-11 05:46:19 -07:00
parent b675b3676c
commit 1e647cee51
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
2 changed files with 17 additions and 17 deletions

View File

@ -7,8 +7,8 @@ Hosts: [outfoxxed's gitea], [github]
[outfoxxed's gitea]: https://git.outfoxxed.me/outfoxxed/quickshell [outfoxxed's gitea]: https://git.outfoxxed.me/outfoxxed/quickshell
[github]: https://github.com/outfoxxed/quickshell [github]: https://github.com/outfoxxed/quickshell
Documentation can be built from the [quickshell-docs](https://git.outfoxxed.me/outfoxxed/quickshell-docs) repo, Documentation available at [quickshell.outfoxxed.me](https://quickshell.outfoxxed.me) or
though is currently pretty lacking. can be built from the [quickshell-docs](https://git.outfoxxed.me/outfoxxed/quickshell-docs) repo.
Some fully working examples can be found in the [quickshell-examples](https://git.outfoxxed.me/outfoxxed/quickshell-examples) Some fully working examples can be found in the [quickshell-examples](https://git.outfoxxed.me/outfoxxed/quickshell-examples)
repo. repo.

View File

@ -19,25 +19,25 @@ void TestSplitParser::splits_data() { // NOLINT
// NOLINTBEGIN // NOLINTBEGIN
// clang-format off // clang-format off
QTest::addRow("simple") << "-" QTest::addRow("simple") << "-"
<< "foo" << "-" << "foo" << "-"
<< QList<QString>("foo") << ""; << QList<QString>("foo") << "";
QTest::addRow("multiple") << "-" QTest::addRow("multiple") << "-"
<< "foo" << "-bar-baz-" << "foo" << "-bar-baz-"
<< QList<QString>({ "foo", "bar", "baz" }) << ""; << QList<QString>({ "foo", "bar", "baz" }) << "";
QTest::addRow("incomplete") << "-" QTest::addRow("incomplete") << "-"
<< "foo" << "-bar-baz" << "foo" << "-bar-baz"
<< QList<QString>({ "foo", "bar" }) << "baz"; << QList<QString>({ "foo", "bar" }) << "baz";
QTest::addRow("longsplit") << "12345" QTest::addRow("longsplit") << "12345"
<< "foo1234" << "5bar12345" << "foo1234" << "5bar12345"
<< QList<QString>({ "foo", "bar" }) << ""; << QList<QString>({ "foo", "bar" }) << "";
QTest::addRow("longsplit-incomplete") << "123" QTest::addRow("longsplit-incomplete") << "123"
<< "foo12" << "3bar123baz" << "foo12" << "3bar123baz"
<< QList<QString>({ "foo", "bar" }) << "baz"; << QList<QString>({ "foo", "bar" }) << "baz";
// clang-format on // clang-format on
// NOLINTEND // NOLINTEND
} }