-
Hello everyone! Before opening an issue I wanted to ask here if this really is bug. We recently discovered the following error message in our renovatebot logs:
We debugged this issue and apparently the problem is the underscore ( import {readSync} from 'to-vfile'
import {remark} from 'remark'
import remarkGithub from 'remark-github'
const file = readSync('example.md')
remark()
.use(remarkGithub, { repository: 'foo_bar/bar' })
.process(file)
.then((file) => {
console.log(String(file))
}) If I add the
We are using a selfhosted Gitlab CE instance (the full url to the repo used would be something like So my questions are:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi!
|
Beta Was this translation helpful? Give feedback.
Hi!
remark-github
is for GitHub. It does not match GitLab features. That’s not a goal of this project. There would probably be much more work needed to support GitLab flavored markdown (and it’s specifically calledremark-github
, notremark-gitlab
)._
in their name? That thread looks a bit vague.