Jump to content

User talk:Johnrdorazio: Difference between revisions

Page contents not supported in other languages.
From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
Content deleted Content added
Line 21: Line 21:
title="WALL STREET \"RAG\""
title="WALL STREET \"RAG\""
composer="SCOTT JOPLIN"
composer="SCOTT JOPLIN"
piece=\markup { \column { \override #'(box-padding . 0.5)
\override #'(extra-offset . #'( 12 . 2 )) \left-align \box
\column { \right-align { "NOTE: Do not play this piece fast." "It is never right to play Ragtime fast." \italic { \line { "Composer." \hspace #1.0 } } } } } }

mutopiatitle = "Wall Street Rag"
mutopiatitle = "Wall Street Rag"
mutopiacomposer = "JoplinS"
mutopiacomposer = "JoplinS"

Revision as of 20:41, October 12, 2021

Here's a place to discuss this online encyclopedia with me

If you have any questions or need help when creating or editing an article, please feel free to contact me and we can try to work out any issues. Just click on Add topic here on top.

Test audio player

Test Score tag

Safe mode has been removed from LilyPond as of version 2.23.12. LilyPond files can run arbitrary code. Please sandbox your LilyPond installation using Shellbox and set $wgScoreSafeMode = false.


Test Score tag in raw lilypond format, with title

Safe mode has been removed from LilyPond as of version 2.23.12. LilyPond files can run arbitrary code. Please sandbox your LilyPond installation using Shellbox and set $wgScoreSafeMode = false.

Test syntax highlighting

Javascript:

let jsV = "Javascript variable";
let jsObj = {
  item: "First item"
}

PHP

$myVar = "PHP variable";
$myVarUpper = strtoupper($myVar);

LUA

-- defines a factorial function
function fact (n)
  if n == 0 then
    return 1
  else
    return n * fact(n-1)
  end
end

print("enter a number:")
a = io.read("*number")        -- read a number
print(fact(a))