Skip to content

Commit

Permalink
markdown plugin 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Spencer Kelly authored and Spencer Kelly committed Jun 25, 2023
1 parent d146133 commit d222280
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions plugins/markdown/builds/wtf-plugin-markdown.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wtf-plugin-markdown 1.0.0 MIT */
/* wtf-plugin-markdown 1.0.1 MIT */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
Expand Down Expand Up @@ -48,7 +48,7 @@
if (options.references === true) {
md += '## References';
md += this.citations()
.map((c) => c.json(options))
.map((c) => c.markdown(options))
.join('\n');
}
return md
Expand Down
2 changes: 1 addition & 1 deletion plugins/markdown/builds/wtf-plugin-markdown.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions plugins/markdown/builds/wtf-plugin-markdown.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* wtf-plugin-markdown 1.0.0 MIT */
/* wtf-plugin-markdown 1.0.1 MIT */
const defaults$4 = {
redirects: true,
infoboxes: true,
Expand Down Expand Up @@ -42,7 +42,7 @@ const toMarkdown$6 = function (options) {
if (options.references === true) {
md += '## References';
md += this.citations()
.map((c) => c.json(options))
.map((c) => c.markdown(options))
.join('\n');
}
return md
Expand Down
2 changes: 1 addition & 1 deletion plugins/markdown/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wtf-plugin-markdown",
"description": "markdown plugin for wtf_wikipedia",
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"main": "./src/index.js",
"unpkg": "./builds/wtf-plugin-markdown.min.js",
Expand Down

0 comments on commit d222280

Please sign in to comment.