Org-mode meta results

2023-02-17 Thread Galaxy Being
I can't get this to play the meta game in an org-mode buffer #+begin_src emacs-lisp (defun print-elements-of-list (list) "Print each element of LIST on a line of its own." (while list (print (car list)) (setq list (cdr list #+end_src #+RESULTS: : print-elements-of-list

Re: Template for ob- packages?

2023-02-17 Thread Galaxy Being
Yes, I'll try to have a look. My Emacs gig so far has been user/power user and "investigator" of Babel languages. Right now I'm on Prolog. I'll learn some of ob-prolog's capabilities first. On Thu, Feb 16, 2023 at 3:16 PM Matt wrote: > > On Thu, 16 Feb 2023 16:10:51 -05

Template for ob- packages?

2023-02-16 Thread Galaxy Being
Is there a generic starter template for writing an ob- package, some sort of example code? ⨽ Lawrence Bottorff Grand Marais, MN, USA borg...@gmail.com

ob-groovy.el must be hand-loaded?

2022-12-21 Thread Galaxy Being
Don't know why, but in my "spare time" I snoop around Babel. So I've revisited Groovy in Babel and have found a bizarre situation where, yes, there appears an ob-groovy.el in my ~/.emacs.d/elpa/org-9.6/ , but I have to do a specific load-file to get it seen and functioning. And no, it's not

Latest MathJax?

2022-12-12 Thread Galaxy Being
I just perused my org-html-mathjax-options and the path seems outdated '((path " https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS_HTML;) (scale "100") (align "center") (font "TeX") (linebreaks "false") (autonumber "AMS") (indent "0em") (multlinewidth "85%")

Re: Supress title on html export

2022-12-02 Thread Galaxy Being
v 30, 2022 at 6:43 PM Rudolf Adamkovič wrote: > Galaxy Being writes: > > > Yes, leaving it blank suppresses it, but then my browser needs a page > > title for searching. I'm trying to have and not display a title. > > Using CSS, for example: > > #+html_head_ext

Supress title on html export

2022-11-30 Thread Galaxy Being
I found this , but apparently it no longer applies. Any ideas how to not display a title -- besides leaving #+TITLE: blank? Yes, leaving it blank suppresses it, but then my browser needs

Re: How to keep getting org updates

2021-10-13 Thread Galaxy Being
Appreciate the help and encouragement. This pinning business ... seems like musical chairs with different suggestions here and there. Should I use this suggestion, or maybe this

Re: How to keep getting org updates

2021-10-12 Thread Galaxy Being
mented out my org-plus-contrib, not knowing how to proceed with it. The install instructions on the main org page were not very clear, to say the least. On Tue, Oct 12, 2021 at 1:33 AM Tim Cross wrote: > > Galaxy Being writes: > > > This is in my init.el > > > > ... > &

How to keep getting org updates

2021-10-11 Thread Galaxy Being
This is in my init.el ... (setq package-archives '(("ELPA" . "http://tromey.com/elpa/;) ("gnu" . "http://elpa.gnu.org/packages/;) ("melpa" . "https://melpa.org/packages/;) ("org" . "https://orgmode.org/elpa/;))) ... I'm guessing the last line is no more and should be removed? In any case,

Re: Formatting content in a footnote for ox-tufte

2021-06-03 Thread Galaxy Being
I just discovered that the ox-tufte handling of footnote formatting is different from normal org mode formatting. Normal footnotes take source blocks while ox-tufte ignores them and all other blocks as well. On Wed, Jun 2, 2021 at 11:22 AM Galaxy Being wrote: > I'm using the org tufte <

Formatting content in a footnote for ox-tufte

2021-06-02 Thread Galaxy Being
I'm using the org tufte ox-tufte and started tweaking the underlying tufte.css to my needs. It's really meant for org html export, not like the more elaborate org-to-latex Tufte formatting from org mode luminary Thomas

Format babel code block for export?

2021-06-01 Thread Galaxy Being
I have this #+begin_src haskell :results silent :exports code :{ maximum'' :: (Ord a) => [a] -> a maximum'' = foldl1 (\x acc -> if x > acc then x else acc) :} #+end_src but on export to HTML (or LaTex) I'd like to suppress the :{ and :} to just show the code maximum'' :: (Ord a) => [a] -> a

Re: Custom org-mode tags: What is the limit?

2021-02-12 Thread Galaxy Being
, you can simply make up any symbol, place it within colons and there's your tag; but I'm looking for a way to have persistent global tags by the hundreds. On Thu, Feb 11, 2021 at 10:35 PM Galaxy Being wrote: > How many custom, self-made tags can you have with org-mode? org-tag-alist > seems

Custom org-mode tags: What is the limit?

2021-02-11 Thread Galaxy Being
How many custom, self-made tags can you have with org-mode? org-tag-alist seems maxed out at 26. Is that the limit? On a heading, I can C-c C-c and a (helm?) buffer comes up with my 26 tag choices. So can you only create as many tags as there are lower-case letters in the alphabet. Is this true? I