Results 164 comments of Tim Vink

I like the decoupling of the vega theme and the mkdocs material, and the nested config structure makes it clear, great idea! You are right about 'autodetect' option not feeling...

Any chance we can finish this one? :)

This is epic! Really well done! > When trying to detect mkdocs-material's active color scheme, the light names are actually ignored. Should we rethink the design? I noticed. Actually `vega_theme`...

I did that here btw: https://github.com/timvink/mkdocs-charts-plugin/pull/25 Will release soon

Yes, you're right! Thanks for pointing that out. Would you be willing to make the changes to `docs/usage.md` and make a PR?

Awesome work @squidfunk and @ojacques , really cool stuff!

While we're discussing the set of git-based mkdocs plugins, it might also be relevant to discuss 'plain git'. I feel there's potential to build a standard, lower-level `mkdocs-git-info-plugin` that adds...

@byrnereese is this package still being maintained? I'd be happy to provide a PR for this. Currently `mkdocs-git-committers-plugin` uses the github API, but we could add a more generic local...

Awesome! Will work on the proposal for UX and a first bit of implementation over the weekend.

The technical implementation is fairly straightforward, as we can use `page.file.abs_src_path` with: ```python from git import Git logs = g.log("README.md", n=2, format="%cn %ct %ce").split('\n') logs = [x.split(' ') for x...