npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jvaneenwyk/obsidian-checklist

v2.2.14

Published

A plugin for Obsidian.md which consolidates todo items into a single view.

Downloads

6

Readme

Obsidian Checklist

⚠️ This is a fork of the excellent obsidian-checklist-plugin created by delashum. Intention of this repository is to experiment with the plugin to see if it is possible to help with maintaining the plugin over time and potentially adding new features.

This plugin for Obsidian consolidates checklists from across files into a single view.

Usage

After enabling this plugin, you will see the checklist appear in the right sidebar. If you do not you can run the Checklist: Open View command from the command palette to get it to appear.

By default, block of checklist items you tag with #todo will appear in this sidebar.

You can complete checklist items by checking them off in your editor (e.g. - [ ] -> - [x]) or by clicking a checklist item in the sidebar which will update your .md file for you

Configuration

screenshot-settings

Tag name: The default tag to lookup checklist items by is #todo, but may be changed to whatever you like

Show completed?: By default the plugin will only show uncompleted tasks, and as tasks are completed they will filter out of the sidebar. You may choose to show all tasks

screenshot-completed

Show All Todos In File?: By default the plugin will only show tasks in the block that is tagged - changing this will show all tasks present in a file if the tag is present anywhere on the page.

Group by: You can group by either file or tag name. If you choose to group by tag name they will appear in the order that they first appear in your files (or last depending on sort order)

screenshot-tags

Sort order: By default checklist items will appear in the order they appear in the file, with files ordered with the oldest at the top. This can be changed to show the newest files at the top.

Glob File Matching

The "Include Files" setting uses Glob file matching. Specifically the plugin uses minimatch to match the file pattern - so any specific oddities will come from that plugin.

Couple of common examples to help structure your glob:

  • !{_templates/**,_archive/**} will include everything except for the two directories _templates and _archive.
  • {Daily/**,Weekly/**} will only include files in the Daily & Weekly directories

I recommend the Digital Ocean Glob Tool for figuring out how globs work - although the implementation is not identical to minimatch so there might be slight differences.