Skip to content

Commit

Permalink
Fix changes to tests caused by whitespace fix in reader
Browse files Browse the repository at this point in the history
  • Loading branch information
mpastell committed Apr 20, 2016
1 parent 65a1033 commit 1d2c108
Show file tree
Hide file tree
Showing 20 changed files with 8 additions and 25 deletions.
2 changes: 2 additions & 0 deletions doc/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ pandoc: Pandoc markdown
rst: reStructuredText and Sphinx
texminted: Latex using minted for highlighting
github: Github markdown
md2html: Markdown to HTML (requires Pandoc)
md2pdf: Markdown to pdf (requires Pandoc and xelatex)
asciidoc: AsciiDoc
tex: Latex with custom code environments
```
Expand Down
1 change: 0 additions & 1 deletion test/documents/chunk_func_ref.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

Functions:

~~~~{.julia}
Expand Down
1 change: 0 additions & 1 deletion test/documents/chunk_options_ref.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


~~~~{.julia}
julia> y= [2, 5, 12]
3-element Array{Int64,1}:
Expand Down
1 change: 0 additions & 1 deletion test/documents/chunk_options_ref.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


.. code-block:: julia
julia> y= [2, 5, 12]
Expand Down
1 change: 0 additions & 1 deletion test/documents/chunk_options_ref.tex
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


\begin{juliaterm}
julia> y= [2, 5, 12]
3-element Array{Int64,1}:
Expand Down
1 change: 0 additions & 1 deletion test/documents/chunk_options_ref.texminted
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


\begin{minted}[fontsize=\footnotesize, xleftmargin=0.5em, mathescape]{julia}
julia> y= [2, 5, 12]
3-element Array{Int64,1}:
Expand Down
1 change: 0 additions & 1 deletion test/documents/default_opts_ref.tex
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



\begin{juliacode}
using Gadfly
print(1:10)
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_formats_test_jssvg_ref.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



````julia
using Gadfly
x = linspace(0, 2π, 200)
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_formats_test_pandoc_ref.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



~~~~{.julia}
using Gadfly
x = linspace(0, 2π, 200)
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_formats_test_ps_ref.tex
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



\begin{juliacode}
using Gadfly
x = linspace(0, 2π, 200)
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_formats_test_ref.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



.. code-block:: julia
using Gadfly
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_formats_test_ref.tex
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



\begin{juliacode}
using Gadfly
x = linspace(0, 2π, 200)
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_formats_test_svg_ref.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



~~~~{.julia}
using Gadfly
x = linspace(0, 2π, 200)
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_formats_test_tikz_ref.tex
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



\begin{juliacode}
using Gadfly
x = linspace(0, 2π, 200)
Expand Down
1 change: 0 additions & 1 deletion test/documents/gadfly_markdown_test_ref.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


# Gadfly

````julia
Expand Down
1 change: 0 additions & 1 deletion test/documents/output/gadfly_formats_test_ref.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@



[source,julia]
--------------------------------------
using Gadfly
Expand Down
5 changes: 2 additions & 3 deletions test/documents/pyplot_formats_ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@




````julia
using PyPlot
x = linspace(0, 2π, 200)
Expand All @@ -29,13 +28,13 @@ linspace(0.0,6.283185307179586,200)
julia> plot(x, sin(x))

1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f11ccf03a10>
PyObject <matplotlib.lines.Line2D object at 0x7fe56d2dfef0>
julia> y = 20

20
julia> plot(x, cos(x))
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f11ccf03410>
PyObject <matplotlib.lines.Line2D object at 0x7fe56d2e4fd0>
````


Expand Down
5 changes: 2 additions & 3 deletions test/documents/pyplot_formats_ref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@




.. code-block:: julia
using PyPlot
Expand Down Expand Up @@ -41,13 +40,13 @@ linspace(0.0,6.283185307179586,200)
julia> plot(x, sin(x))

1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f995cdeae90>
PyObject <matplotlib.lines.Line2D object at 0x7fe5a9e74b70>
julia> y = 20

20
julia> plot(x, cos(x))
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f995cdf9b90>
PyObject <matplotlib.lines.Line2D object at 0x7fe5a9e7acf8>



Expand Down
5 changes: 2 additions & 3 deletions test/documents/pyplot_formats_ref.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@




\begin{juliacode}
using PyPlot
x = linspace(0, 2π, 200)
Expand Down Expand Up @@ -36,13 +35,13 @@
julia> plot(x, sin(x))

1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f84f5e74750>
PyObject <matplotlib.lines.Line2D object at 0x7fe56f7ac978>
julia> y = 20

20
julia> plot(x, cos(x))
1-element Array{Any,1}:
PyObject <matplotlib.lines.Line2D object at 0x7f84f5e74950>
PyObject <matplotlib.lines.Line2D object at 0x7fe56f7b29b0>
\end{juliaterm}
\includegraphics[width=\linewidth]{figures/pyplot_formats_4_1.pdf}

Expand Down
1 change: 0 additions & 1 deletion test/documents/test_hold_ref.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


# Default

~~~~{.julia}
Expand Down

0 comments on commit 1d2c108

Please sign in to comment.