Skip to content

Commit

Permalink
Add support for Org (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
spenserblack authored May 23, 2024
1 parent e45b182 commit 7409edc
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gengo/languages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,12 @@ OpenSCAD:
matchers:
extensions:
- scad
Org:
category: prose
color: "#77AA99"
matchers:
extensions:
- org
PHP:
category: programming
color: "#7A86B8"
Expand Down
32 changes: 32 additions & 0 deletions samples-test/samples/Org/org.org
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
* Org
** Text

Paragraphs are blocks of text. They are separated by a new line.

See? This is a new paragraph.

Text can by styled. /Italicize/ with a slash or *bold* with asterisks,
or mark something as ~code~ with tildes.

-----

Oh, and you can separate with 5 hyphens.

** Lists

+ unordered
+ with
+ plus symbol

1. order
2. with
3. numbers

-----

Go to [[https://example.com][a link]]!

#+begin_quote
The syntax for blocks is too weird to describe in text. Just read this file's source
code.
#+end_quote

0 comments on commit 7409edc

Please sign in to comment.