Releases: JunoLab/Weave.jl
Releases · JunoLab/Weave.jl
Weave.jl v0.4.3
- Fix extra whitespace from inline code output
Weave.jl v0.4.2
- Added Hugo formatter contributed by @tpapp
- Fix testing for correct 0.6 commits for markdown display and eval tricks.
Weave.jl v0.4.1
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
andpandoc2pdf
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
- 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
- Add support for YAML title block
- Use Julia markdown for publishing to pdf and html
- Add
template
,highlight_theme
,latex_cmd
andcss
option toweave
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
- Add IJulia notebook as input format
- Add
convert_doc
method to convert between input formats
Weave.jl v0.2.1
- 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
- Move to Julia 0.5 only
- New
display
andprompt
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
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
- 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
andmd2html
, 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.