Skip to content

Commit e61eb40

Browse files
committed
fix: update command to match upgraded pandoc
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 1ec9586 commit e61eb40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/_tools/bib/citation-reference/lib

lib/node_modules/@stdlib/_tools/bib/citation-reference/lib/cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
function cmd( src, dest, opts ) {
3232
var out = [];
3333
out.push( 'pandoc' );
34-
out.push( '--filter=pandoc-citeproc' );
34+
out.push( '--citeproc' );
3535
out.push( '--from=markdown' );
3636
out.push( '--to=markdown_github' );
3737
out.push( '--bibliography='+opts.database );

0 commit comments

Comments
 (0)