[ HelpTop ]
(1) Specifies yakibiki's uploaded image data by yakibiki's page id.
&image(100) &image(200) { "alt" attribute text(optional) }
(2) Specifies relative path to _YB('url') with 'yb://' prefix.
&image(yb://dir1/dir2/image01.jpg) { "alt" attribute text(optional) }
→ <img> tag which "src" is _YB('url') + 'dir1/dir2/image01.jpg'.
(3) Specifies external url.
&image(http://example.com/image/01.jpg) { "alt" attribute text(optional) }
You can also specify "width" and "height" parameters.
# output <img> tag which "src" is ID=100 image and "width" is "200". &image(100, width=200) # output <img src="https://example.com/image/01.png" height="200" /> &image(https://example.com/image/01.png, height=200) # output <img src="_YB('url') + '/dir/image.png'" width="100" height="300" /> &image(yb:///dir/image.png, width=100, height=300)
If you want to wrap images left or right, you can use "float" argument. You can also use "clear" block plugin.
# Apply style="float: left;" to <img> tag. &image(yb://images/image.png, float=left)
#ls|| : list up based on current page name. #ls|page/name| : list up "page/name/*", "page/nameXXYY" pages. #ls|page/name|> (ignored) ||< : (same).
#more||
(1) : Generate navigation links to NEXT, PREVIOUS pages based on "page-name" virtual directory. If "page-name" was omitted, current page title will be used as base of virtual directory.
#navi|page-name|
(2) : With <hr>(horizon line) tag at bottom of navigation links for displaying in header position.
#navi|page-name|> header ||<
(3) : With <hr>(horizon line) tag at top of navigation links for displaying in footer position.
#navi|page-name|> footer ||<
Example :
based on current page name : #navi|| based on given virtual directory : #navi|page/name/dirs| with header hr tags and simple display : #navi|page/name/dirs|> header ||< (= #navi_header|page/name/dirs|) with footer hr tags and detailed display : #navi|page/name/dirs|> footer ||< (= #navi_footer|page/name/dirs|)
#navi_footer|| #navi_footer|page-name|
#navi_header|| #navi_header|page-name|
#newcomments|| #newcomments|5|
#outline||
→ Dipslays list of all headings.
#outline|2|
→ Displays list of headings until level 2.
[ HelpTop ]