Skip to content

Commit

Permalink
fix(wiki2pandoc): change wrap to none
Browse files Browse the repository at this point in the history
Wrap auto requires more rework than None.
  • Loading branch information
jfishe committed Apr 27, 2024
1 parent 81d6f58 commit 8c9459a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/panvimwiki/wiki2pandoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def vimwiki_task_link() -> None:
extra_args=(
"--standalone",
"--wrap",
"auto",
"none",
),
postfilters=("wikilink_markdown",),
)
Expand Down Expand Up @@ -73,7 +73,7 @@ def expand_citeproc() -> None:
"--citeproc",
"--standalone",
"--wrap",
"auto",
"none",
),
postfilters=("wikilink_markdown",),
)
Expand Down
17 changes: 5 additions & 12 deletions tests/vim/VimwikiMarkdown.vader
Original file line number Diff line number Diff line change
Expand Up @@ -106,21 +106,17 @@ Expect (Append references):

House of Dude

<div id="refs" class="references csl-bib-body hanging-indent"
entry-spacing="0">
<div id="refs" class="references csl-bib-body hanging-indent" entry-spacing="0">

<div id="ref-bloggs-jones" class="csl-entry">

Bloggs, A. J., and X. Y. Jones. 1959. “Title Title Title Title Title
Title Title Title Title Title.” *Journal Journal Journal*.
Bloggs, A. J., and X. Y. Jones. 1959. “Title Title Title Title Title Title Title Title Title Title.” *Journal Journal Journal*.

</div>

<div id="ref-chomsky-73" class="csl-entry">

Chomsky, N. 1973. “Conditions on Transformations.” In *A Festschrift for
Morris Halle*, edited by S. R. Anderson and P. Kiparsky. New York: Holt,
Rinehart & Winston.
Chomsky, N. 1973. “Conditions on Transformations.” In *A Festschrift for Morris Halle*, edited by S. R. Anderson and P. Kiparsky. New York: Holt, Rinehart & Winston.

</div>

Expand Down Expand Up @@ -153,16 +149,13 @@ Expect (WikilinkMarkdown):

<div id="ref-bloggs-jones" class="csl-entry">

Bloggs, A. J., and X. Y. Jones. 1959. “Title Title Title Title Title
Title Title Title Title Title.” *Journal Journal Journal*.
Bloggs, A. J., and X. Y. Jones. 1959. “Title Title Title Title Title Title Title Title Title Title.” *Journal Journal Journal*.

</div>

<div id="ref-chomsky-73" class="csl-entry">

Chomsky, N. 1973. “Conditions on Transformations.” In *A Festschrift for
Morris Halle*, edited by S. R. Anderson and P. Kiparsky. New York: Holt,
Rinehart & Winston.
Chomsky, N. 1973. “Conditions on Transformations.” In *A Festschrift for Morris Halle*, edited by S. R. Anderson and P. Kiparsky. New York: Holt, Rinehart & Winston.

</div>

Expand Down

0 comments on commit 8c9459a

Please sign in to comment.