Changes for page Attachments
Last modified by Manuel Leduc on 2022/03/21
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -32,10 +32,23 @@ 32 32 33 33 Note that you can create a link to the attachment/image directly in that same popup window. 34 34 35 -1.1 Linking to an attached file 35 +1.1 Linking to an attached file/image 36 36 37 37 If you're using the wiki editor, you can use the [Image macro>Code.ImageMacro] to display an image inline. If you simply wish to link to an attachment, use the [Attach macro>Code.AttachMacro]. 38 38 39 39 If you're using the WYSIWYG editor, then use the "Insert an Attachment link" or "Insert/edit image" buttons as shown above. 40 40 41 +1.1 Linking to an external file/image 41 41 43 +If your file is on a remote server and you wish to link from your wiki, you'll need to enter HTML using the Wiki editor. For example: 44 + 45 +{code:xml} 46 +<a href="http://some_remote_server/path/to/file">text to display</a> 47 +{code} 48 + 49 +For displaying an image located on a remote server, use the following HTML code snippet: 50 + 51 +{code:xml} 52 +<img src="http://some_remote_server/path/to/image"/> 53 +{code} 54 +