[O] Export width for generated SVG image?

2013-03-26 Thread Ken Williams
I'm using a 'dot' section to create an SVG image, then exporting my document to HTML: #+BEGIN_SRC dot :exports results :file process-diag.svg digraph { foo.rds - foo.csv; ... } #+END_SRC My diagram ends up pretty huge though, and I want to shrink it down. :width 1000 doesn't seem to have

Re: [O] Export width for generated SVG image?

2013-03-26 Thread John Hendy
On Tue, Mar 26, 2013 at 3:16 PM, Ken Williams ken.willi...@windlogics.com wrote: I’m using a ‘dot’ section to create an SVG image, then exporting my document to HTML: [deleted] My diagram ends up pretty huge though, and I want to shrink it down. :width 1000 doesn’t seem to have any effect,

Re: [O] Export width for generated SVG image?

2013-03-26 Thread Ken Williams
-Original Message- From: John Hendy [mailto:jw.he...@gmail.com] Sent: Tuesday, March 26, 2013 3:49 PM Are you using the new exporter or old? I believe the old syntax would have been: #+attr_html width=100% [[image.svg]] Beautiful, thanks. -Ken