Skip to content

Releases: JunoLab/Weave.jl

Weave.jl v0.4.3

02 Apr 08:03
Compare
Choose a tag to compare
  • Fix extra whitespace from inline code output

Weave.jl v0.4.2

30 Mar 15:29
Compare
Choose a tag to compare
  • Added Hugo formatter contributed by @tpapp
  • Fix testing for correct 0.6 commits for markdown display and eval tricks.

Weave.jl v0.4.1

14 Mar 19:53
Compare
Choose a tag to compare

This is a bug fix and 0.6 compatibility release, the only new feature is support for citations in pandoc output formats.

  • Support citations in pandoc2html and pandoc2pdf output
  • Disable precompilation due to warnings from depencies
  • Fix deprecation warnings for Julia 0.6
  • Fix PyPlot for Julia 0.6
  • Fix extra whitespace when term=true
  • Fix mime type priority for md2html

Weave.jl v0.4.0

14 Mar 15:45
Compare
Choose a tag to compare
  • Support passing arguments to document using args option
  • Add include_weave for including code from Weave documents
  • Add support for inline code chunks
  • Remove generated figure files when publishing to html and pdf

Weave.jl v0.3.0

19 Dec 19:34
Compare
Choose a tag to compare
  • Add support for YAML title block
  • Use Julia markdown for publishing to pdf and html
  • Add template, highlight_theme, latex_cmd and css option to weave for customizing html and pdf output
  • Bug fixes
    • Fix plotting on Windows
    • Fix extra whitespace from code chunk output
  • Improved GR and GLVisualize support with Plots

Weave.jl v0.2.2

13 Dec 08:21
Compare
Choose a tag to compare
  • Add IJulia notebook as input format
  • Add convert_doc method to convert between input formats

Weave.jl v0.2.1

13 Dec 08:21
Compare
Choose a tag to compare
  • Fix critical hanging on Windows using proper handling of redirect_stdout
  • Add support for Plots.jl plotly and plotlyjs backends for including javascipt
    output in published HTML documents.
  • Fix semicolons for term=true

Weave.jl v0.2

13 Dec 08:22
Compare
Choose a tag to compare
  • Move to Julia 0.5 only
  • New display and prompt chunk options by @gragusa
  • Implemented fig_width and fig_height chunk option for Plots.jl
  • Added pre and post chunk hooks, only used internally for now
  • Automatic detection of plotting library, :auto is the new default options
  • Support for displaying general multimedia objects e.g. Plots.jl and Images.jl
    now work with weave.
  • Support for including html, latex and markdown output from objects
  • New logic for displaying output in script chunks, output is shown by default for:
    • Writing to stdout
    • Calling display
    • Gadfly plots
    • Variables on their own
    • If the last line of a chunk is a function call that returns output e.g. plot(1:10)
  • Bug fixes
    • Fix parsing of lone variables from chunks
    • Fix error with md2html formatter and dates #38

Weave.jl v0.1.2

02 May 20:51
Compare
Choose a tag to compare

27th April 2016

  • Fix a bug with out_path for md2html and md2pdf
  • Fix md2html and md2pdf on Windows
  • Improve doctype autodetection
  • Improved regex for parsing markdown input format

Weave v0.1.1

24 Apr 12:59
Compare
Choose a tag to compare
  • Change pandoc output to use inline images if there is no caption.
  • Use Documenter.jl for documentation.
  • Add chunk option hold, replaces results = "hold". This way you can use e.g. hold = true, results=raw.
  • Methods for setting and restoring default chunk options for documents.
  • New output options md2pdf and md2html, both use pandoc to output pdf
    and html files directly with own templates.
  • Restored and improved Winston support.
  • New input format: scripts with markup in comments
  • New output format: MultiMarkdown
  • Added support for figure width in Pandoc
  • Autodetect input and output formats based on filename
  • Allow out_path be a file or directory.