This commit is contained in:
Philipp Kühn 2021-02-04 11:46:14 +01:00
commit b260460c75
2 changed files with 7 additions and 1 deletions

View File

@ -37,6 +37,7 @@ export default Extension.create({
doc.descendants((node, pos) => {
const hasAnchor = anchor >= pos && anchor <= (pos + node.nodeSize)
// TODO: should be false for image nodes (without text content), is true though
const isNodeEmpty = node.content.size === 0
if ((hasAnchor || !this.options.showOnlyCurrent) && isNodeEmpty) {

View File

@ -17,7 +17,12 @@ We use [GitHub](http://github.com/) to store our code, collaborate, give support
### Hosting (Netlify)
We use Netlify to host the documentation. It features continuous deployment from Git across a global application delivery network and full integration with Lets Encrypt. If you want to know more, [read Netlifys privacy policy](https://www.netlify.com/privacy/).
### Tracking (Simple Analytics)
### Tracking (Plausible)
We use [Plausible](https://plausible.io) to gain insight about our visitors in general. It doesnt track individual users per se and does not store any personal identifiable information. Go to [their documentation](https://plausible.io/data-policy) to find out what Simple Analytics collects (and more importantly what they dont).
Or have a look at the [public analytics dashboard](https://plausible.io/tiptap.dev) they provide. Its not a stripped down version, its the exact same dashboard we use to check the traffic.
### Tracking (Simple Analytics, deprecated, will be removed soon)
We use [Simple Analytics](https://simpleanalytics.com/) to gain insight about our visitors in general. It doesnt track individual users per se and does not store any personal identifiable information. Go to their documentation to find out what Simple Analytics collects (and more importantly what they dont).
Or have a look at the [public analytics dashboard](https://simpleanalytics.com/tiptap.dev) they provide. Its not a stripped down version, its the exact same dashboard we use to check the traffic.