Generate sitemap for documentation

This commit is contained in:
Simon Binder 2019-06-30 19:51:39 +02:00
parent f5492b8bcb
commit 9082236be8
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
4 changed files with 10 additions and 3 deletions

View File

@ -21,3 +21,4 @@ gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?
gem 'jekyll-sitemap'

View File

@ -247,6 +247,7 @@ PLATFORMS
DEPENDENCIES
github-pages
jekyll-sitemap
just-the-docs
tzinfo-data

View File

@ -17,7 +17,7 @@ title: Moor
#email: your-email@example.com
description: >- # this means to ignore newlines until "baseurl:"
Moor is an easy to use, reactive, typesafe persistence library for Flutter apps.
baseurl: "" # the subpath of your site, e.g. /blog
baseurl: "/" # the subpath of your site, e.g. /blog
url: "https://moor.simonbinder.eu" # the base hostname & protocol for your site, e.g. http://example.com
#twitter_username: jekyllrb
github_link: https://github.com/simolus3/moor
@ -32,6 +32,7 @@ markdown: kramdown
theme: just-the-docs
plugins:
- jekyll-feed
- jekyll-sitemap
# Exclude from processing.
# The following items will not be processed, by default. Create a custom list

View File

@ -33,10 +33,14 @@ now run your queries with fluent Dart code
There are some sql features like `group by` statements which aren't natively supported by moor yet.
However, as moor supports [custom sql queries]({{"queries/custom" | absolute_url}}), there are easy
workarounds for most entries on this list. Custom queries work well together with the regular api,
as they integrate with stream queries and automatic result parsing.
as they integrate with stream queries and automatic result parsing. Starting from version 1.5, moor
also has a custom sql parser that can infer types for variables and result columns. It can generate
typesafe APIs for sql queries.
### Limitations (at the moment)
These aren't sorted by priority. If you have more ideas or want some features happening soon,
let me know by [creating an issue]({{site.github_link}}/issues/new)!
let me know by [creating an issue]({{site.github_link}}/issues/new)! Again, note that these only
apply to the Dart api - all of these can be expressed using custom queries which nicely integrates
with the rest of the library.
- No `group by`, count, or window functions
- Support other platforms:
- VM apps