compose tips
-
Quote filter
Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:
[quote]This is a simple quote.[/quote] is displayed as:
Quote: This is a simple quote.
Additionally, there is an optional attribute which allows quotes to specify the original author.
[quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
is displayed as:
Mr. Drupal wrote: This is a quote with an attribution line.
Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.
[quote]I think she says it best...
[quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
but you can't argue with
[quote=Ms. Reply]The more quotes, the merrier.
Just don't get too carried away.[/quote]
And I have nothing more to say.[/quote] is displayed as:
Quote: I think she says it best...
Ms. Quotation wrote: This is a quote nested within another quote.
but you can't argue with
Ms. Reply wrote: The more quotes, the merrier. Just don't get too carried away.
And I have nothing more to say.
-
You may link to files uploaded with the current node using special tags. The tags will be replaced by the corresponding files. For example:
Suppose you uploaded three files (in this order):
- imag1.png (referred as file #1)
- file1.pdf (referred as file #2)
- imag2.png (referred as file #3)
[inline:1=test] or [inline:imag1.png=test]
will be replaced by <img src=imag1.png alt=test>
[file:1=test] or [file:imag1.png=test]
will be replaced by <a href=imag1.png>test</a>
[attachment:2=test] or [attachment:file1.pdf=test]
will be replaced by <a href=file1.pdf.png>test</a>
|