jonschlinkert
Here are 85 public repositories matching this topic...
Documentation error
Noticed an error in the documentation
{{ellipsis "foo bar baz", 7}}
has an comma which should not be there and breaks the helper, should be
{{ellipsis "foo bar baz" 7}}
I am creating a custom TOC to fix #104 for me; however, it's not that easy.
var toc = require('markdown-toc');
var md = '# heading\n## heading 2\n### heading 3';
var result = toc(md); // links are incorrect in the toc for Angular
var correct_toc = [];
result.json.forEach(function(h) {
// fixed h.content
correct_toc.push(new_h);
}
var toc_md = toc.bullets(correoptions.delimiters
Type: String
Default: ---
Open and close delimiters can be passed in as an array of strings.
Example:
// format delims as a string
matter.read('file.md', {delims: '~~~'});
// or an array (open/close)
matter.read('file.md', {delims: ['~~~', '~~~']});
the example is wrong.
it should use delimiters instead of delims.
like that:
Example:
/
No mention of cache
-
Updated
Jun 18, 2019
-
Updated
Apr 30, 2020 - JavaScript
-
Updated
Nov 19, 2018 - JavaScript
Because if some greenkeeper update fails it shows red badge on the readme and I think this isn't good. Users may think the master branch and published release fails, which isn't correct. It's not good for reputation of the package/repository, so I recently changed it in my readmes.
https://img.shields.io/travis/node-minibase/minibase.svg
https://img.shields.io/travis/node-minibase/minibas
-
Updated
Feb 1, 2020 - JavaScript
-
Updated
Apr 1, 2020 - JavaScript
Recently I become to experiment with the library for some project that I'm currently working, somehow when I use my GitHub account to do some tests I saw that an error comes and was from the two-factor auth (my GitHub account has the two-factor auth).
-
Updated
Jul 13, 2019 - JavaScript
-
Updated
Jul 9, 2020 - JavaScript
-
Updated
Jul 7, 2020 - JavaScript
-
Updated
Sep 4, 2019 - JavaScript
-
Updated
Dec 6, 2019 - JavaScript
-
Updated
May 25, 2019 - JavaScript
-
Updated
Nov 25, 2018 - JavaScript
-
Updated
Apr 1, 2020 - JavaScript
-
Updated
Nov 2, 2019 - JavaScript
Git config supports multiple values for the same key. A real-world example:
git config --add url.https://github.com/.insteadof git@github.com:
git config --add url.https://github.com/.insteadof ssh://github.com/
parse-git-config doesn't seem to support this; it only parses the last value, dropping earlier ones.
-
Updated
Jun 11, 2019 - JavaScript
-
Updated
Apr 1, 2020 - JavaScript
Hey @jonschlinkert :)
The comment's code.context is an empty object when using export default, arrow function.
/**
* Foobar 1 with default export arrow function and typescript
* and empty code.context
*
* @param {string} `commit` a commit message
* @api public
*/
export default (commit: string): Commit => {};
/**
* Foobar 2 with default export arrow functionImprove this page
Add a description, image, and links to the jonschlinkert topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the jonschlinkert topic, visit your repo's landing page and select "manage topics."
when using backtick within a table, the
pipe|wont be espace by thebackslash\(originally raised here)
To Reproduce
try this code within a docusaurus md file