-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doesn't support checkbox in markdown #986
Comments
|
@ulivz Close this issue 😎 |
This is not exactly same with https://blog.github.com/2014-04-28-task-lists-in-all-markdown-documents/ .contains-task-list LI |
As per 1.0, extendMarkdown module.exports = {
markdown: {
extendMarkdown: md => {
md.use(require('markdown-it-task-lists'))
}
}
} .vuepress/styles/index.styl .contains-task-list LI
{
list-style-type:none;
} |
感谢,成功解决问题 |
For your information, if you are using vuepress-next, the config file should be:
|
Thanks for the answer by @maartenvanderhoef, to clarify for newbie, the complete steps for VuePress 1.x + tasklists
module.exports = {
markdown: {
extendMarkdown: md => {
md.use(require('markdown-it-task-lists'))
}
}
}
.contains-task-list LI {
list-style-type:none;
}
|
Bug report
Version
Steps to reproduce
What is expected?
What is actually happening?
Other relevant information
The text was updated successfully, but these errors were encountered: