All Projects → orgapp → Orgajs

orgapp / Orgajs

Licence: mit
parse org-mode content into AST

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Orgajs

gram-js
Gram in javascript.
Stars: ✭ 21 (-94.96%)
Mutual labels:  ast, unified
Remark
remark is a popular tool that transforms markdown with plugins. These plugins can inspect and change your markup. You can use remark on the server, the client, CLIs, deno, etc.
Stars: ✭ 4,746 (+1038.13%)
Mutual labels:  ast, unified
Rehype
HTML processor powered by plugins part of the @unifiedjs collective
Stars: ✭ 634 (+52.04%)
Mutual labels:  ast, unified
Retext
natural language processor powered by plugins part of the @unifiedjs collective
Stars: ✭ 2,119 (+408.15%)
Mutual labels:  ast, unified
uniorg
An accurate Org-mode parser
Stars: ✭ 190 (-54.44%)
Mutual labels:  unified, org-mode
rehype-dom
HTML processor to parse and compile with browser APIs, powered by plugins
Stars: ✭ 20 (-95.2%)
Mutual labels:  ast, unified
Micromark
the smallest commonmark compliant markdown parser that exists; new basis for @unifiedjs (hundreds of projects w/ billions of downloads for dealing w/ content)
Stars: ✭ 793 (+90.17%)
Mutual labels:  ast, unified
nast
A block-based intermediate representation for document-like content.
Stars: ✭ 35 (-91.61%)
Mutual labels:  ast, org-mode
redot
Graphviz dot file processor powered by plugins based on @unifiedjs
Stars: ✭ 60 (-85.61%)
Mutual labels:  ast, unified
Media Server Go
WebRTC media server for go
Stars: ✭ 362 (-13.19%)
Mutual labels:  unified
Gatsby Starter Wordpress
A GatsbyJS starter template that leverages the WordPress API, ACF and more
Stars: ✭ 387 (-7.19%)
Mutual labels:  gatsbyjs
Gatsby Shopify Starter
🛍 Simple starter to build a blazing fast Shopify store with Gatsby.
Stars: ✭ 356 (-14.63%)
Mutual labels:  gatsbyjs
Solhint
Solhint is an open source project created by https://protofire.io. Its goal is to provide a linting utility for Solidity code.
Stars: ✭ 363 (-12.95%)
Mutual labels:  ast
Detective
Find all calls to require() no matter how deeply nested using a proper walk of the AST
Stars: ✭ 387 (-7.19%)
Mutual labels:  ast
Org Sidebar
A helpful sidebar for Org mode
Stars: ✭ 354 (-15.11%)
Mutual labels:  org-mode
Org Rifle
Rifle through your Org-mode buffers and acquire your target
Stars: ✭ 395 (-5.28%)
Mutual labels:  org-mode
React Gatsby Firebase Authentication
🐣🔥Starter Project / Boilerplate for Authentication with Firebase and plain React in Gatsby.js
Stars: ✭ 356 (-14.63%)
Mutual labels:  gatsbyjs
Hast
Hypertext Abstract Syntax Tree format
Stars: ✭ 344 (-17.51%)
Mutual labels:  ast
30 Seconds Web
Website infrastructure for 30-seconds projects.
Stars: ✭ 391 (-6.24%)
Mutual labels:  gatsbyjs
Node Dependency Tree
Get the dependency tree of a module
Stars: ✭ 383 (-8.15%)
Mutual labels:  ast

#+TITLE: Orga

#+HTML:

#+BEGIN_QUOTE org-mode with JavaScript #+END_QUOTE

  • What Is It

=Orga= is a flexible org-mode syntax parser. It parses org content into AST ([[https://en.wikipedia.org/wiki/Abstract_syntax_tree][Abstract Syntax Tree 🌲]]), then what you can do with it is limited only by your imagination.

  • Why

The reason why markdown is so popular is that org-mode is kind of trapped inside of emacs (I am joking, sort of. 😉). I want to share the awesomeness with the rest of the world. JavaScript runs everywhere nowadays, so, why not.

  • What You Can Do with it NOW
  • Build a full-featured gatsby blog in seconds, customize it progressively, bits by bits. [[https://www.huxiaoxing.com/building-a-website-with-org-mode-files][Here is the post]].
  • Build a bare-bone gatsby website (for those of you tinkerers), start building your website from raw data.
  • Integrate org-mode into any of your JavaScript projects. E.g. a real-time org-mode -> HTML transformer on your website, like [[https://orga.js.org][this one]].
  • What You Can Do Potentially
  • emacs-less cli for org-mode
  • org-mode desktop app with [[https://www.electronjs.org][electron]], or a [[https://code.visualstudio.com][Visual Studio Code]] extension.
  • org-mode mobile app with [[https://reactnative.dev][react native]].
  • Compatible Eco-systems

Nobody likes to reinvent wheels more than us programmers. But when you see a pretty solid wheel, it's wise to take advantage of it.

** [[https://unifiedjs.com][Unified]]

#+BEGIN_QUOTE ☔️ interface for parsing, inspecting, transforming, and serializing content through syntax trees #+END_QUOTE

The =orga= parser is completely compatible with unified. Which means you get to take advantage of the works of others put into the pipeline. [[https://github.com/retextjs/retext][linting for natural language]], [[https://alexjs.com][correct your writing]], [[https://wooorm.com/write-music/][write music]]? etc.

** [[https://www.gatsbyjs.com][Gatsby]]

#+BEGIN_QUOTE Build blazing fast, modern apps and websites with React #+END_QUOTE

One of the best static website/app generator out there. Trust me; I have tried a lot. Don't be put off by words like =React= or =JavaScript=. Like it or not, they are taking over the web. orga is deeply integrated with gatsby (via [[file:packages/gatsby-transformer-orga/README.md][plugins]] and [[file:packages/gatsby-theme-blorg/README.md][themes]]) to create the tools for building powerful websites without much hassle. Also, We can leverage other plugins people build for markdown-based websites. Which is a much richer eco-system, now it's ours too.

  • How Does It Work
  • [[file:packages/orga/README.org][Learn more about the parser]]
  • [[file:packages/orga/src/types.ts][Learn more about the definition of the AST]]
  • [[file:examples/example/][Learn by example how to transform org-mode syntax into HTML]]
  • [[https://orgapp.github.io/gatsby-starter-blorg/][Learn more about building websites with org files]]
  • Documentation [[https://orga.js.org][Here]].
  • Contribute

After you clone the code:

#+begin_src shell

Bootstrap the Project

yarn run bootstrap

Run Unit Tests

yarn test

Play with the Website

cd www yarn run develop #+end_src

If you find any issue, try to reproduce it on [[https://orga.js.org][this convenient web page]], generate a permalink with the button, and attach it to your GitHub issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].