Jump to content

Help:Contributing

From LilyPond wiki
Revision as of 17:55, 1 November 2025 by Jean Abou Samra (talk | contribs) (Created page with "To create a new page, type the title in the search box, then click on the red link. A simple page can be structured as follows: <pre><nowiki> Some explanatory text. Describe what the snippet does and how to use it. Use wikitext markup like ''italic'', '''bold''' and <code>code fragment</code>. <lilypond version="2.24.0"> % Here goes your LilyPond snippet. Do not include a \version % statement, it will be added automatically. Set the version % in the <lilypond version="...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

To create a new page, type the title in the search box, then click on the red link. A simple page can be structured as follows:

Some explanatory text. Describe what the snippet does and how
to use it. Use wikitext markup like ''italic'', '''bold''' and
<code>code fragment</code>.

<lilypond version="2.24.0">
% Here goes your LilyPond snippet. Do not include a \version
% statement, it will be added automatically. Set the version
% in the <lilypond version="..."> tag to the latest stable
% version, unless your snippet requires a newer development
% release. You can use any LilyPond version, it will be downloaded
% automatically if needed. If you need to demonstrate page
% layout features, use the 'full' keyword to prevent cropping
% like this: <lilypond version="..." full>.
{ c' }
</lilypond>