I hope this is the right place to ask a question.

I would like to export a notebook to markdown and subsequently compile to 
PDF via LaTeX using Pandoc and the `listings` environment. In the exported 
markdown, the input and output cells look like this:

    ```julia
    x = [1.0, 2.3, 3.14]
    ```








        3-element Array{Float64,1}:
         1.0
         2.3
         3.14



Is it possible to export the notebook so the input and output cells are in 
the same block quote? For example, I would like the above to be instead

    ```julia
    x = [1.0, 2.3, 3.14]


        3-element Array{Float64,1}:
         1.0
         2.3
         3.14
    ```

Is that possible?

Thank you in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/0d7544ee-3989-443f-90fc-025099a33c7e%40googlegroups.com.

Reply via email to