Skip to content

Commit e5fe0ce

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents 6ee30cd + 67c6488 commit e5fe0ce

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

lib/node_modules/@stdlib/_tools/remark/plugins/remark-stdlib-related/lib/escape_markdown.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var replace = require( '@stdlib/string/base/replace' );
2525

2626
// VARIABLES //
2727

28-
var RE_MARKDOWN_CHARS = /[\\`*_[#!~|]/g;
28+
var RE_MARKDOWN_CHARS = /[\\*_[#!~|]/g;
2929

3030

3131
// MAIN //
@@ -36,6 +36,7 @@ var RE_MARKDOWN_CHARS = /[\\`*_[#!~|]/g;
3636
* ## Notes
3737
*
3838
* - This function escapes characters that have special meanings in Markdown, such as #, *, _, ~, etc., by prefixing them with a backslash.
39+
* - The function does not escape backticks, as we assume that they are intentionally used to denote code.
3940
*
4041
* @private
4142
* @param {string} str - string to be escaped

lib/node_modules/@stdlib/nlp/expand-acronyms/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ out = expandAcronyms( str );
9090

9191
<section class="related">
9292

93+
* * *
94+
95+
## See Also
96+
97+
- <span class="package-name">[`@stdlib/nlp/expand-contractions`][@stdlib/nlp/expand-contractions]</span><span class="delimiter">: </span><span class="description">expand contractions.</span>
98+
9399
</section>
94100

95101
<!-- /.related -->
@@ -98,6 +104,12 @@ out = expandAcronyms( str );
98104

99105
<section class="links">
100106

107+
<!-- <related-links> -->
108+
109+
[@stdlib/nlp/expand-contractions]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/nlp/expand-contractions
110+
111+
<!-- </related-links> -->
112+
101113
</section>
102114

103115
<!-- /.links -->

0 commit comments

Comments
 (0)