I'm trying to figure out how to resize the still-under-construction abalone key to fit a window's size:
cat(readLines("images/key.svg"))
From what I've read/seen, when you add in an image using
![some caption](./images/whatever_image.jpg) the html output resizes the image to match a window's size, which is great!
However, it's easy enough to manually resize the image using {width=n%} (e.g. (./images/whatever_image.jpg){width=75%}) but I can't figure out how to make readLines() cooperate! No matter where I add {width=n%} I get error messages, such as:
Instead of using cat(readLines) to add in the .svg key, should we just use ![some caption](./images/whatever_image.jpg) ?
Hey @bbest ,
I'm trying to figure out how to resize the still-under-construction abalone key to fit a window's size:
From what I've read/seen, when you add in an image using
![some caption](./images/whatever_image.jpg)
the html output resizes the image to match a window's size, which is great!However, it's easy enough to manually resize the image using
{width=n%}
(e.g.(./images/whatever_image.jpg){width=75%}
) but I can't figure out how to makereadLines()
cooperate! No matter where I add{width=n%}
I get error messages, such as:Instead of using cat(readLines) to add in the .svg key, should we just use
![some caption](./images/whatever_image.jpg)
?Thanks in advance!