Template:File: Difference between revisions

From Octave
Jump to navigation Jump to search
m (fixing to not show template on this page)
(change template color for sky blue)
Line 1: Line 1:
<includeonly><div style="border: 1px solid rgb(255, 191, 191); padding: .2em .3em; margin: .2em .2em; background-color: rgb(255, 242, 242);"><div style="background-color: #ffc1c1; padding: .2em; margin: .2em; border: solid 1px #ff7070; font-size: 92%; ">'''File:''' {{{1}}}</div>{{{2}}}</div></includeonly><noinclude>{{TemplateDoc}}[[Category:Templates]]</noinclude>
<includeonly><div style="border: 1px solid rgb(135, 206, 235); padding: .2em .3em; margin: .2em .2em; background-color: rgb(255, 242, 242);"><div style="background-color: #ffc1c1; padding: .2em; margin: .2em; border: solid 1px #ff7070; font-size: 92%; ">'''File:''' {{{1}}}</div>{{{2}}}</div></includeonly><noinclude>{{TemplateDoc}}[[Category:Templates]]</noinclude>

Revision as of 23:12, 15 December 2011

[edit]

Template-info.png Template Documentation

This template is used to include the contents of files. The first argument is the filename/filepath but can be left blank.

  • the actual code still needs to be inside a <pre> ... </pre> block.
  • to markup only the name of a file (e.g., /etc/octave3.2.conf), use Template:Path instead.

Example:

{{File|~/.octaverc|<pre>
## make prompt look like python
PS1(">>> ")
PS2("... ")

## alias help to man
function man (name)
  help (char (name))
endfunction

## load all packages
pkg load all;
</pre>}}

Will produce:

File: ~/.octaverc
## make prompt look like python
PS1(">>> ")
PS2("... ")

## alias help to man
function man (name)
  help (char (name))
endfunction

## load all packages
pkg load all;