├── Orgdown logo - 64x64 white background.png ├── README.org └── date2name /Orgdown logo - 64x64 white background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novoid/github-orgmode-tests/55fc90555f6432a7039c142665ef764245e91ba7/Orgdown logo - 64x64 white background.png -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- 1 | #+TAGS: { FAILS(f) PARTLY(p) WORKS(w) example(e)} 2 | #+EXPORT_EXCLUDE_TAGS: noexport 3 | 4 | *Note:* a complete list of these features including keyboard 5 | shortcuts, links, and descriptions is available on 6 | https://github.com/novoid/github-orgmode-tests 7 | 8 | This page demonstrates Org-mode features that are (or are not) 9 | supported by github which is using an (old) version of [[https://github.com/wallyqs/org-ruby][org-ruby]]. 10 | 11 | Last GitHub feature render check and last table update: <2020-10-15 Thu> 12 | 13 | # FIXXME 2020-10-15: Following line causes my Org to display column view mode instead of re-generating the filtered table: 14 | # :exclude-tags "example" 15 | 16 | #+BEGIN: columnview :id "Featuretest" :match "WORKS|FAILS|PARTLY" :format "%ITEM(Feature) %TAGS(status)" 17 | | Feature | status | 18 | |----------------------------------------------+------------------| 19 | | Text formatting | :WORKS: | 20 | | Text formatting within other syntax elements | :WORKS: | 21 | | Lists | :PARTLY: | 22 | | Headings with TODO items | :FAILS: | 23 | | Drawers | :FAILS: | 24 | | blocks ([[http://orgmode.org/org.html#Blocks][docu]]) | :PARTLY: | 25 | | EXAMPLE block | :WORKS: | 26 | | QUOTE block | :WORKS: | 27 | | VERSE block | :FAILS: | 28 | | SRC block | :WORKS: | 29 | | python | :WORKS: | 30 | | shell | :WORKS: | 31 | | ruby | :WORKS: | 32 | | ditaa | :WORKS: | 33 | | session with shell and R | :WORKS: | 34 | | QUOTE block | :WORKS: | 35 | | HTML block | :FAILS: | 36 | | LATEX block ([[http://orgmode.org/org.html#Embedded-LaTeX][docu]]) | :FAILS: | 37 | | NOTES block | :FAILS: | 38 | | comments ([[http://orgmode.org/manual/Comment-Lines.html][docu]]) | :WORKS: | 39 | | Noexport tag of heading | :WORKS:noexport: | 40 | | links [[http://orgmode.org/org.html#Hyperlinks][(docu)]] | :PARTLY: | 41 | | states; TODO items ([[http://orgmode.org/org.html#TODO-Items][docu]]) | :PARTLY: | 42 | | tags [[http://orgmode.org/org.html#Tags][(docu)]] | :FAILS: | 43 | | tables simple [[http://orgmode.org/org.html#Tables][(docu)]] | :PARTLY: | 44 | | tables complex ([[http://orgmode.org/org.html#The-Spreadsheet][docu]], [[http://orgmode.org/worg/org-tutorials/org-spreadsheet-intro.html][tutorial]]) | :PARTLY: | 45 | | column view ([[http://orgmode.org/org.html#Column-View][docu]]) | :FAILS: | 46 | | dates & time ([[http://orgmode.org/org.html#Dates-and-Times][docu]]) | :WORKS: | 47 | | clocking time ([[http://orgmode.org/org.html#Clocking-Work-Time][docu]]) | :PARTLY: | 48 | | images | :PARTLY: | 49 | | Macro replacement | :FAILS: | 50 | #+END: 51 | 52 | Please note that there is a *much* better syntax overview and compatibility list on [[https://gitlab.com/publicvoit/orgdown/-/blob/master/doc/Tool-Support.org][the Orgdown project page]]. 53 | 54 | 55 | * Featuretest 56 | :PROPERTIES: 57 | :ID: Featuretest 58 | :END: 59 | ** Text formatting :WORKS: 60 | 61 | - *bold* 62 | - /italic/ 63 | - _underline_ 64 | - +strike through+ 65 | - =code= 66 | - ~commands~ 67 | - http://orgmode.org 68 | 69 | : small example 70 | 71 | ** Text formatting within other syntax elements :WORKS: 72 | :PROPERTIES: 73 | :CREATED: [2020-12-21 Mon 12:13] 74 | :END: 75 | 76 | Within links: 77 | 78 | [[http://orgmode.org][This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~.]] 79 | 80 | [[https://gnu.org][~gnu~]] 81 | 82 | Table: 83 | 84 | | Example | 85 | |-----------------------------------------------------------------------------------| 86 | | http://orgmode.org | 87 | | [[http://orgmode.org][Org mode]] | 88 | | This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. | 89 | 90 | Lists: 91 | 92 | - Example 93 | - This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 94 | 95 | Headings: 96 | 97 | *** This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 98 | 99 | ** Lists :PARTLY: 100 | 101 | - MISSING: 102 | - Checkbox rendering/alignment 103 | - Reusing same enumerate bullet symbols (dash, numbers, ...) 104 | 105 | simple list: 106 | - Org mode 107 | - Lists 108 | - [ ] unchecked checkbox 109 | - [X] checked checkbox 110 | - [-] undecided checkbox (=C-u C-u C-c C-c=) 111 | 112 | enumerate: 113 | 1. Emacs 114 | 2. Org-mode 115 | 3. Lists 116 | 117 | mixed with checkboxes: 118 | 119 | - Clean out garage 120 | 1. [ ] get stuff out 121 | - [ ] be careful with that axe, Eugene 122 | 2. [X] get rid of old stuff 123 | - using eBay? 124 | - try to use rubbish as birthday presents for family 125 | 3. [ ] repaint garage 126 | 4. [X] put stuff back in 127 | 128 | ** Headings with TODO items :FAILS: 129 | 130 | - MISSING 131 | - display of TODO keywords 132 | 133 | *** TODO Clean out garage [0/4] 134 | 135 | **** TODO get stuff out 136 | 137 | - be careful with that axe, Eugene 138 | 139 | **** TODO get rid of old stuff 140 | 141 | - using eBay? 142 | - try to use rubbish as birthday presents for family 143 | 144 | **** TODO repaint garage 145 | 146 | **** TODO put stuff back in 147 | 148 | ** Drawers :FAILS: 149 | 150 | - MISSING: 151 | - rendering of drawers 152 | 153 | *** NEXT Test with category property :mytag: 154 | :PROPERTIES: 155 | :CATEGORY: mycategory 156 | :END: 157 | 158 | ** blocks ([[http://orgmode.org/org.html#Blocks][docu]]) :PARTLY: 159 | :PROPERTIES: 160 | :CREATED: [2020-10-15 Thu 11:18] 161 | :END: 162 | 163 | - including babel ([[http://orgmode.org/org.html#Library-of-Babel][docu]]) 164 | 165 | *** EXAMPLE block :WORKS: 166 | 167 | #+BEGIN_EXAMPLE 168 | An example in an EXAMPLE block. 169 | Second line within this block. 170 | 171 | This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 172 | #+END_EXAMPLE 173 | 174 | *** QUOTE block :WORKS: 175 | :PROPERTIES: 176 | :CREATED: [2020-10-15 Thu 11:51] 177 | :END: 178 | 179 | Will be wrapped: 180 | 181 | #+BEGIN_QUOTE 182 | An example in an QUOTE block. 183 | Second line within this block. 184 | 185 | This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 186 | #+END_QUOTE 187 | 188 | *** VERSE block :FAILS: 189 | :PROPERTIES: 190 | :CREATED: [2020-10-15 Thu 11:52] 191 | :END: 192 | 193 | - MISSING: 194 | - rendering of the block 195 | 196 | #+BEGIN_VERSE 197 | An example in an VERSE block. 198 | Second line within this block. 199 | 200 | This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 201 | #+END_VERSE 202 | 203 | *** SRC block :WORKS: 204 | :PROPERTIES: 205 | :CREATED: [2020-10-15 Thu 11:52] 206 | :END: 207 | 208 | **** python :WORKS: 209 | :PROPERTIES: 210 | :CREATED: [2020-10-15 Thu 12:02] 211 | :END: 212 | 213 | #+BEGIN_SRC python 214 | def my_test(myvar: str = 'foo bar'): 215 | """ 216 | This is an example function. 217 | 218 | @type myvar: str = 'foo bar': number 219 | @param myvar: str = 'foo bar': FIXXME 220 | """ 221 | 222 | mynewvar: str = myvar + ' additional content' 223 | return mynewvar 224 | 225 | print("Hello " + my_text('Europe!')) 226 | #+END_SRC 227 | 228 | #+BEGIN_SRC emacs-lisp 229 | (message (concat "Hello" "Europe!")) ;; inline comment 230 | #+END_SRC 231 | 232 | 233 | - some examples are taken from [[http://orgmode.org/worg/org-contrib/babel/intro.html][Worg: Introduction to Babel]] 234 | 235 | **** shell :WORKS: 236 | :PROPERTIES: 237 | :CREATED: [2020-10-15 Thu 11:59] 238 | :END: 239 | 240 | #+BEGIN_SRC sh 241 | echo "Hello Europe!" 242 | FOO="foo bar" 243 | echo "A test with ${FOO}" 244 | pwd 245 | #+END_SRC 246 | 247 | **** ruby :WORKS: 248 | :PROPERTIES: 249 | :CREATED: [2020-10-15 Thu 11:59] 250 | :END: 251 | 252 | #+begin_src ruby 253 | require 'date' 254 | "This file was last evaluated on #{Date.today}" 255 | #+end_src 256 | 257 | **** ditaa :WORKS: 258 | :PROPERTIES: 259 | :CREATED: [2020-10-15 Thu 11:59] 260 | :END: 261 | 262 | #+begin_src ditaa :file blue.png :cmdline -r 263 | +---------+ 264 | | cBLU | 265 | | | 266 | | +----+ 267 | | |cPNK| 268 | | | | 269 | +----+----+ 270 | #+end_src 271 | 272 | **** session with shell and R :WORKS: 273 | :PROPERTIES: 274 | :CREATED: [2020-10-15 Thu 11:59] 275 | :END: 276 | 277 | #+name: directories 278 | #+begin_src sh :results replace 279 | cd ~/archive/events_memories && du -sc * |grep -v total 280 | #+end_src 281 | 282 | Using result set "directories" from above as "dirs" in R below: 283 | 284 | #+name: directory-pie-chart(dirs = directories) 285 | #+begin_src R :session R-pie-example :file ./dirs.png 286 | pie(dirs[,1], labels = dirs[,2]) 287 | #+end_src 288 | 289 | *** QUOTE block :WORKS: 290 | :PROPERTIES: 291 | :CREATED: [2020-10-15 Thu 11:52] 292 | :END: 293 | 294 | Will be wrapped: 295 | 296 | #+BEGIN_QUOTE 297 | An example in an QUOTE block. 298 | Second line within this block. 299 | 300 | This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 301 | #+END_QUOTE 302 | 303 | *** HTML block :FAILS: 304 | :PROPERTIES: 305 | :CREATED: [2020-10-15 Thu 11:52] 306 | :END: 307 | 308 | #+BEGIN_HTML 309 | This is strong. 310 | This is emphasized. 311 | Heres is a web reference: link 312 | 313 | #+END_HTML 314 | 315 | *** LATEX block ([[http://orgmode.org/org.html#Embedded-LaTeX][docu]]) :FAILS: 316 | :PROPERTIES: 317 | :CREATED: [2020-10-15 Thu 11:53] 318 | :END: 319 | 320 | - MISSING: 321 | - rendering of the block 322 | - some special characters 323 | 324 | - Greek characters 325 | - Working outside of block: \alpha \beta \phi 326 | - not working: \LaTeX{} $\varphi$ 327 | 328 | #+BEGIN_LATEX 329 | \section{Section Title} 330 | 331 | This is \emph{emphasized} and $y=x^2$ is an equation. 332 | 333 | An example in an LATEX block. 334 | Another line within this block. 335 | 336 | \alpha $x=42y$ 337 | 338 | Greek characters \alpha \beta \phi \LaTeX{} $\varphi$ 339 | #+END_LATEX 340 | 341 | *** NOTES block :FAILS: 342 | :PROPERTIES: 343 | :CREATED: [2020-10-15 Thu 11:53] 344 | :END: 345 | 346 | - MISSING: 347 | - rendering of the block 348 | 349 | Notes blocks are *not standard Org mode*. However, =org-reveal= is using 350 | it for handout notes so I would like to include it here. 351 | 352 | #+BEGIN_NOTES 353 | An example in an NOTES block. 354 | Second line within this block. 355 | 356 | This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 357 | #+END_NOTES 358 | 359 | ** comments ([[http://orgmode.org/manual/Comment-Lines.html][docu]]) :WORKS: 360 | 361 | Comment lines: 362 | 363 | space hash space: 364 | 365 | # This is a comment 366 | 367 | space space hash space: 368 | 369 | # This is a comment 370 | 371 | ----------- 372 | 373 | Comment block: 374 | 375 | #+BEGIN_COMMENT 376 | This is a multi line comment block. 377 | This is the second line. 378 | 379 | This is the second paragraph. 380 | 381 | This *is* an /example/ of _some_ syntax +highlighting+ within =links= and ~such~. 382 | #+END_COMMENT 383 | 384 | ** Noexport tag of heading :WORKS:noexport: 385 | 386 | The document needs to explicitly set the tag used for no export, as is done at 387 | the top of this document (it's set to ~noexport~). 388 | 389 | Tagging a heading with the tag hides the section when opening the on the site. 390 | 391 | This whole heading is omitted from being rendered on GitHub. 392 | 393 | ** links [[http://orgmode.org/org.html#Hyperlinks][(docu)]] :PARTLY: 394 | 395 | - MISSING: 396 | - =<>= 397 | - following =id:= links 398 | - custom links 399 | - without your Emacs config, those links are impossible to follow 400 | - rendering somehow would be fine 401 | - footnotes 402 | 403 | todo: target 404 | : # <> 405 | 406 | - file:test.org without brackets 407 | - [[file:test.org]] with double brackets 408 | - http://orgmode.org → plain URL without brackets 409 | - [[http://orgmode.org]] → URL with brackets without description 410 | - [[http://orgmode.org][Org mode homepage]] → URL with brackets with description 411 | 412 | - id:myexampleid → an id-link 413 | - custom links: [[contact:John%20Smith][contact:John Smith]] 414 | - [[http://orgmode.org/org.html#Link-Abbreviations][docu: link abbrevations]] 415 | 416 | - footnotes ([[http://orgmode.org/org.html#Creating-Footnotes][docu]]) 417 | - plain [fn::great content here] 418 | - with own label [fn:mylabel:great content here] 419 | - reference [fn:myotherlabel] [fn:2] 420 | 421 | [fn:myotherlabel] This is a footnote from reference above. 422 | [fn:2] This is a footnote with a simple number as label. 423 | 424 | Footnotes aren't working 425 | 426 | *** heading with PROPERTIES drawer containing ID 427 | :PROPERTIES: 428 | :ID: myexampleid 429 | :END: 430 | Should have =#myexampleid= anchor, doesn't work as of =2021-04-11= 431 | 432 | *** eading with PROPERTIES drawer containing CUSTOM_ID 433 | :PROPERTIES: 434 | :CUSTOM_ID: myexamplecustomid 435 | :END: 436 | Should have =#myexamplecustomid= anchor, doesn't work as of =2021-04-11= 437 | 438 | ** states; TODO items ([[http://orgmode.org/org.html#TODO-Items][docu]]) :PARTLY: 439 | 440 | - MISSING: 441 | - todo keywords 442 | - dependencies from within drawers 443 | 444 | *** making dependencies explicit 445 | 446 | **** example with chain siblings 447 | 448 | ***** NEXT buy bike 449 | :PROPERTIES: 450 | :TRIGGER: chain-siblings(NEXT) 451 | :END: 452 | 453 | ***** take tour 454 | 455 | ***** goto hospital 456 | 457 | *** priorities ([[http://orgmode.org/org.html#Priorities][docu]]) 458 | 459 | **** TODO [#A] example 460 | **** NEXT [#B] example 461 | 462 | *** breaking down in subtasks ([[http://orgmode.org/org.html#Breaking-Down-Tasks][docu]]) 463 | 464 | **** TODO example [1/3] [33%] 465 | ***** DONE subtask 1 466 | ***** TODO subtask 2 467 | ***** TODO subtask 3 468 | ** tags [[http://orgmode.org/org.html#Tags][(docu)]] :FAILS: 469 | 470 | - MISSING: 471 | - rendering tags 472 | 473 | *** example :tag: 474 | 475 | ** tables simple [[http://orgmode.org/org.html#Tables][(docu)]] :PARTLY: 476 | 477 | - MISSING: 478 | - number alignment 479 | 480 | | *Heading1* | *head2* | 481 | |------------+---------| 482 | | entry | 42 | 483 | | foo | 21.7 | 484 | |------------+---------| 485 | | end | 99.99 | 486 | 487 | ** tables complex ([[http://orgmode.org/org.html#The-Spreadsheet][docu]], [[http://orgmode.org/worg/org-tutorials/org-spreadsheet-intro.html][tutorial]]) :PARTLY: 488 | 489 | - MISSING: 490 | - Tables are concatenated unfortunately and alignment fails. 491 | 492 | #+TBLNAME: mydemo-USD-EUR-rate 493 | | *US-Dollar* | *EUR* | 494 | | 1 | 0.76481836 | 495 | 496 | | *When* | *What* | *USD* | *EUR* | 497 | |------------+------------------------+-------+-------| 498 | | 2012-02-03 | Taxi Graz-Airport | | 18.00 | 499 | | 2012-02-03 | Taxi Seattle Airport | 25.00 | 19.12 | 500 | | 2012-02-13 | Taxi | 7.00 | 5.35 | 501 | | 2012-02-14 | Taxi | 8.00 | 6.12 | 502 | | 2012-02-17 | Taxi to Airport SeaTac | 35.00 | 26.77 | 503 | | 2012-02-22 | Taxi Airport-Graz | | 16.00 | 504 | |------------+------------------------+-------+-------| 505 | | | | | 91.36 | 506 | #+TBLFM: @>$4=vsum(@I$4..@II$4);%.2f::@3$4=@3$3*remote(mydemo-USD-EUR-rate,@2$2);%.2f::@4$4=@4$3*remote(mydemo-USD-EUR-rate,@2$2);%.2f::@5$4=@5$3*remote(mydemo-USD-EUR-rate,@2$2);%.2f::@6$4=@6$3*remote(mydemo-USD-EUR-rate,@2$2);%.2f 507 | 508 | ** column view ([[http://orgmode.org/org.html#Column-View][docu]]) :FAILS: 509 | :PROPERTIES: 510 | :COLUMNS: %25ITEM %TAGS %PRIORITY %TODO %10MyProperties 511 | :MyProperties_ALL: "Thomas" "Maria" "Susan" "Joe" 512 | :END: 513 | 514 | - MISSING: 515 | - no support for those things 516 | 517 | *** example sub-item :mytag1: 518 | :PROPERTIES: 519 | :MyProperties: Susan 520 | :END: 521 | 522 | *** NEXT [#B] another example :mytag2: 523 | :PROPERTIES: 524 | :MyProperties: Thomas 525 | :END: 526 | 527 | ** dates & time ([[http://orgmode.org/org.html#Dates-and-Times][docu]]) :WORKS: 528 | 529 | - ~C-c .~ *insert active* <2012-04-23 Mon> (with ~C-u~: <2012-04-23 Mon 19:14>) 530 | - ~C-c !~ insert inactive [2012-04-23 Mon] (with ~C-u~: [2012-04-23 Mon 19:14]) 531 | 532 | ** clocking time ([[http://orgmode.org/org.html#Clocking-Work-Time][docu]]) :PARTLY: 533 | 534 | - MISSING: 535 | - drawer information 536 | 537 | *** example sub-hierarchy with report 538 | 539 | #+BEGIN: clocktable :maxlevel 2 :scope subtree 540 | Clock summary at [2012-11-19 Mon 11:17] 541 | 542 | | Headline | Time | 543 | |--------------+---------| 544 | | *Total time* | *27:16* | 545 | |--------------+---------| 546 | #+END: 547 | 548 | **** example item 549 | :LOGBOOK: 550 | CLOCK: [2012-11-19 Mon 11:16]--[2012-11-19 Mon 11:17] => 0:01 551 | CLOCK: [2012-11-18 Sun 19:15]--[2012-11-18 Sun 19:23] => 0:08 552 | :END: 553 | 554 | **** another item 555 | :LOGBOOK: 556 | CLOCK: [2012-11-18 Sun 19:26]--[2012-11-18 Sun 19:33] => 0:07 557 | CLOCK: [2012-11-17 Sat 16:25]--[2012-11-18 Sun 19:25] => 27:00 558 | :END: 559 | 560 | 561 | ** images :PARTLY: 562 | :PROPERTIES: 563 | :CREATED: [2023-12-16 Sat 23:31] 564 | :END: 565 | 566 | Embedding image using HTML block: 567 | 568 | #+BEGIN_HTML 569 | 570 | 571 | 572 | #+END_HTML 573 | 574 | Embedding image using =file= link: 575 | 576 | [[file:Orgdown logo - 64x64 white background.png]] 577 | 578 | ** Macro replacement 579 | :PROPERTIES: 580 | :CREATED: [2024-11-21 Thu 17:31] 581 | :END: 582 | 583 | - [[https://orgmode.org/org.html#Macro-Replacement][Documentation in the Org-mode manual]] 584 | 585 | #+MACRO: poem Rose is $1, violet's $2. Life's ordered: Org assists you. 586 | {{{poem(red,blue)}}} 587 | 588 | * Parsers 589 | 590 | Parsers for Org mode can be found on https://orgmode.org/worg/org-tools/index.html 591 | * MISC Ad-Hoc Testing 592 | 593 | This sub-hierarchy is here to test specific stuff. 594 | 595 | *You can ignore everything starting from here.* 596 | 597 | ** Headings 598 | 599 | ** heading with properties 600 | :PROPERTIES: 601 | :CREATED: <2011-10-09 Sun 15:16> 602 | :END: 603 | 604 | ** tables 605 | 606 | | *head1* | *head2* | *head3* | 607 | |-----------------------+---------+---------| 608 | | text | 42 | ----- | 609 | | me@server.example.com | 23 | :-) | 610 | |-----------------------+---------+---------| 611 | | | 65 | | 612 | #+TBLFM: @>$2 = vsum(@I$2..@II$2) 613 | 614 | ** links 615 | 616 | - direct URL: http://tagstore.org 617 | - [[http://tagstore.org][indirect URL]] 618 | - direct email: me@example.com 619 | - [[me@server.com][indirect email]] 620 | - [[file:README.org][file link]] 621 | should link to README.org 622 | - [[#links][file + heading link]] 623 | should link to #links in the same file (but the link is recognized in Emacs). If the heading is multiple words, attach them with '-'. 624 | 625 | ** examples 626 | 627 | verse: 628 | #+begin_verse 629 | This is an example. 630 | Second line. 631 | Very long line with many characters showing the wordwrap feature or the not existing word wrap feature 632 | #+end_verse 633 | 634 | quote: 635 | #+begin_quote 636 | This is an example. 637 | Second line. 638 | Very long line with many characters showing the wordwrap feature or the not existing word wrap feature 639 | #+end_quote 640 | 641 | only colon: 642 | : This is an example. 643 | : Second line. 644 | : Very long line with many characters showing the wordwrap feature or the not existing word wrap feature 645 | 646 | non-specific source: 647 | #+begin_src 648 | This is an example. 649 | Second line. 650 | Very long line with many characters showing the wordwrap feature or the not existing word wrap feature 651 | #+end_src 652 | 653 | python source: 654 | #+begin_src python 655 | if VALUE and dummy < 42: 656 | execute_something("Dummy text", 23) 657 | #+end_src 658 | 659 | 660 | 661 | ** Underscores_like_this 662 | 663 | - me_low 664 | - 2_8 665 | - ~*.org_archive~ 666 | - ~*.org\_archive~ 667 | - *.org\_archive 668 | 669 | ** Orgmode examples 670 | 671 | Das hier ist eine Erklärung von dem Ganzen: 672 | 673 | :conf: ;; this is ELISP code 674 | :conf: (foo (bar)) 675 | 676 | Und in der Org-mode-Datei wird das dann so angewendet: 677 | 678 | :org: :PROPERTIES: 679 | :org: :ID: this-is-an-example 680 | :org: :END: 681 | -------------------------------------------------------------------------------- /date2name: -------------------------------------------------------------------------------- 1 | ../date2name/date2name --------------------------------------------------------------------------------