GitHub - tbanel/orgaggregate: Aggregate tables in Org mode
Aggregate tables in Org mode. Contribute to tbanel/orgaggregate development by creating an account on GitHub.GitHub
Jonathan Lamothe likes this.
like this
I like using org tables with org-babel like so:
#+NAME: test
| 1 | 4 |
| 2 | 5 |
| 3 | 6 |
#+begin src emacs-lisp :var test=test
(mapcar
'(lambda (r)
(mapcar '(lambda (x) (* x x)) r)) test)
#+RESULTS:
| 1 | 16 |
| 4 | 25 |
| 9 | 36 |
Is there a way to tell #Emacs #org-mode to omit yhe TOC and headline numbers when exporting to a text or markdown file? I'm trying to implement a #JohnnyDecimal system, so I'm supplying my own numbers and the 00.00-index.org
file essentially is the table of contents.
Edit: Because not all replies federate, here's the solution I ended up with:
#+STARTUP: overview indent nonum
#+OPTIONS: toc:nil
like this
Jonathan Lamothe likes this.
It's been over a year now since my last blog post. #Today I started working on a new one about my adventures with #org-mode. As an experiment, I'm trying to compose the post itself in org-mode, and then export to HTML for the site.
Depending on how reasonable the resulting HTML ends up being, this might be my go-to method of composing blog posts going forward.
reshared this
Setting timezone of org-mode
I'm just getting started with org-mode, and really like it so far. I work in London with xemacs running on OpenVMS based on the East Coast US. Is there any way to get org-mode to use a timezone otherStack Overflow
Martin Stemplinger
in reply to Jonathan Lamothe • • •Jonathan Lamothe
in reply to Martin Stemplinger • •Henry
in reply to Jonathan Lamothe • • •Agenda view of the current buffer
Stack Overflowlann
in reply to Jonathan Lamothe • • •emacs > org mode > agenda - always use current buffer
Stack Overflowa world without cars
in reply to Jonathan Lamothe • • •Per the help doc for org-agenda
"If the current buffer is in Org mode and visiting a file, you can also
first press β<β once to indicate that the agenda should be temporarily
(until the next use of βSPC o aβ) restricted to the current file.
Pressing β<β twice means to restrict to the current subtree or region
(if active).
"
In other words, execute org-agenda then press "<" before the command you want to run against the agenda.
a world without cars
in reply to a world without cars • • •Jonathan Lamothe
in reply to a world without cars • •@a world without cars I have a markdown plugin on my Friendica server. I just put it between backticks like this:
`org-agenda-files`
.This wouldn't work on Mastodon though.
a world without cars
in reply to Jonathan Lamothe • • •Jonathan Lamothe
in reply to a world without cars • •lou.
in reply to Jonathan Lamothe • • •you could do something like this
```
(defun my/file-agenda ()
(interactive)
(when-let ((org-agenda-files (list (buffer-file-name (current-buffer)))))
(org-agenda)))
```