git clone https://https.git.savannah.nongnu.org/git/org-mode.git
git clone https://git.sr.ht/~bzg/org-mode
Support via
#+title: Example Org File #+author: TEC #+date: 2020-10-27
* Revamp orgmode.org website
The /beauty/ of org *must* be shared.
[[https://upload.wikimedia.org/wikipedia/commons/b/bd/Share_Icon.svg]]
** DONE Make screenshots
CLOSED: [2020-09-03 Thu 18:24]
** DONE Restyle Site CSS
Go through [[file:style.scss][stylesheet]]
** TODO Check CSS on main pages
* Learn Org
Org makes easy things trivial and complex things practical.
You don't need to learn Org before using Org: read the quickstart
page and you should be good to go. If you need more, Org will be
here for you as well: dive into the manual and join the community!
** Feedback
#+include: "other/feedback.org*manual" :only-contents t
* Check CSS minification ratios
#+begin_src pythonfrom pathlib import Path cssRatios = [] for css_min in Path("resources/style").glob("*.min.css"): css = css_min.with_suffix('').with_suffix('.css') cssRatios.append([css.name, "{:.0f}% minified ({:4.1f} KiB)".format( 100 * css_min.stat().st_size / css.stat().st_size, css_min.stat().st_size / 1000)]) return cssRatios
#+end_src
#+RESULTS:
| index.css | 76% minified ( 1.4 KiB) |
| org-demo.css | 77% minified ( 2.8 KiB) |
| errors.css | 74% minified ( 4.9 KiB) |
| org.css | 75% minified (10.7 KiB) |
text/org. Org files use the
.org extension. Most operating systems don't know to open .org
files in Emacs, but they can be configured to do so without much
effort.
While the reference implementation of Org in Emacs lisp is by far the
most featureful, there are many additional tools that work with Org.
Tools that work with Org
~$ git clone https://git.sr.ht/~bzg/worg
#org-modeonLibera.Chat.
The full list of contributors to Org mode is maintained in Worg and
you can also check the manual's acknowledgments.
org-mode and other modes (such as
evil-mode). Here are links to the current packages included with
Doom, and Spacemacs. Scimax is deeply integrated with Org so a good
place to start is the manual. Doom installs a version of Org that is
close to the development HEAD, while Spacemacs and Scimax track org
elpa.
Starter kits often make significant changes to the default user
experience for Emacs. If you are looking for something closer to
vanilla Emacs there are popular configs such as Purcell's emacs.d that
include org-mode customization and Org-related packages.