Tony Brix

Results 615 comments of Tony Brix

Seems like this is a limitation of [react-github-permalink](https://github.com/dwjohnston/react-github-permalink/tree/main?tab=readme-ov-file#rate-limits-and-authentication) as well.

Awesome! :100: If you want to you can create a PR to add the extension to known extensions in https://github.com/markedjs/marked/blob/master/docs/USING_ADVANCED.md

It looks like your `rule` searches for a pattern anywhere in the `source`. It should only look for tokens at the beginning. Try adding `^` at the beginning of the...

It also looks like you are setting it as a `block` level token which won't be inside a `` tag. You can change it to `inline` to parse it as...

I like that idea. If you want to create a PR it would be very appreciated 😁👍

> Marked.js can better align with established Markdown specifications and meet the diverse needs of its user base. I'm curious which markdown specifications include this?

I did this by overlaying a fixed div over the entire window and appending it to the target so any mouse moves will move the container. This works by adding...

You could check `this.mouseDown === true` ``` javascript $('.balls__bar').kinetic({ cursor: 'default', x: true, y: false, moved: function(){ if (this.mouseDown) { ipc.send('projector', { func: 'scrollBallBar', params: [$('.stage-inner').width(), $('.balls__bar').scrollLeft()] }); } }...

@thewoolleyman thank you for taking the documentation seriously with Gitlab Flavored Markdown. 💯

If this is fixed in GFM the spec for autolinking should be updated as well.