Jump to content

Template:Note/faq: Difference between revisions

From Sugar Labs
m consolidate categories
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:


==Usage==
==Usage==
  <nowiki>{{Admon/help|Bold headword (optional)|extended helpful tip text}}</nowiki>
  <nowiki>{{Note/faq|Bold headword (optional)|extended helpful tip text}}</nowiki>


real example:
real example:
{{Admon/faq|Help tip for pasting code blocks in the wiki:|Put a space in the first column before<code><nowiki> <nowiki></nowiki></code>followed by a block of code with indentations and newlines to preserve the code block formatting. See below:}}
{{Note/faq|Help tip for pasting code blocks in the wiki:|Put a space in the first column before<code><nowiki> <nowiki></nowiki></code>followed by a block of code with indentations and newlines to preserve the code block formatting. See below:}}
  <nowiki>function () {
  <nowiki>function () {
     """This is the __doc__ str"""
     """This is the __doc__ str"""
Line 12: Line 12:
     if _local_variable is not None:
     if _local_variable is not None:
         this_code_will_execute(self, _local_variable)
         this_code_will_execute(self, _local_variable)
</nowiki>
}</nowiki>


[[Category:Admonition template|faq]]
[[Category:Highlighting template|faq]]
</noinclude>
</noinclude>

Latest revision as of 09:22, 16 July 2011

Bold headword
extended helpful tip

Usage

{{Note/faq|Bold headword (optional)|extended helpful tip text}}

real example:

Help tip for pasting code blocks in the wiki:
Put a space in the first column before <nowiki>followed by a block of code with indentations and newlines to preserve the code block formatting. See below:
function () {
    """This is the __doc__ str"""
    
    _local_variable = 'set here'
    if _local_variable is not None:
        this_code_will_execute(self, _local_variable)
}