Skip to content

Latest commit

 

History

History
85 lines (62 loc) · 1.93 KB

File metadata and controls

85 lines (62 loc) · 1.93 KB

Example Org Mode File

You can make words bold, italic, underlined, strike, verbatim, and code.

Headline 1

The beauty of Hackerman Text must be experienced: https://hackerman.ai#download

Sub-headline

Quick links to open local files: test Or run command in Terminal: ls

  • [X] Index page
  • [X] Quickstart
  • [ ] Features
  • [ ] Releases
  • [X] Install
  • [ ] Manual
  • [ ] Contribute

Headline 2

Org makes easy things trivial and complex things practical.

Hide me.

Tables

ToolLiterate programming?Reproducible Research?Languages
JavadocpartialnoJava
Haskell .lhspartialnoHaskell
nowebyesnoany
SweavepartialyesR
Org-modeyesyesany

Inline code execution

def main(name):
    print(f"Welcome to Python in org-mode, { name }!")
main(name)
local function main(name)
    print("Welcome to Lua in org-mode, " .. name .. "!")
end
main(name)
function main(name){
    console.log(`Welcome to JavaScript in org-mode, ${name}!`);
}
main(name);
(defn main [name]
    (print "Welcome to Hy in org-mode," name "!")
)
(main name)