Earlier quoted context omitted.
Is there some way to tell org exactly how I want it to spit out HTML? I was going to do my blog entirely with org-mode+org-publish, but it spits out a mess of HTML and also a small bit of js for some reason, so I'm just writing html directly myself now. I don't really find writing html myself all that annoying or anything, but it'd be nice if I could get org to generate really clean/simple HTML for me that I could th…
I've been looking for a similar solution - albeit not for HTML - but haven't found anything convincing so far. My train of thought was: It'd be great to have a a canonical XML format for org files to export to, since after that, you could essentially write XSLT transforms for almost any target format (even back to org-files to go full circle). In my case, that e.g. would be odt-files with branding for the organizatio…
Literate Devops with Emacs Org-Mode (2014)
61–70 of 86 posts
Re: Literate Devops with Emacs Org-Mode (2014)
#62Org-mode & Magit really are the secret superpowers of modern emacs. And notmuch (full-text search of one's email, at least one order of magnitude faster than Gmail's!). And elfeed. And gnus. And dired. And pretty much everything else in emacs …
Is there some way to tell org exactly how I want it to spit out HTML? I was going to do my blog entirely with org-mode+org-publish, but it spits out a mess of HTML and also a small bit of js for some reason, so I'm just writing html directly myself now. I don't really find writing html myself all that annoying or anything, but it'd be nice if I could get org to generate really clean/simple HTML for me that I could th…
The HTML export back-end includes a compact default style in each exported HTML file. To override the default style with another style, use these keywords in the Org file. They will replace the global defaults the HTML exporter uses.
#+HTML_HEAD: #+HTML_HEAD_EXTRA:
To just turn off the default style, customize org-html-head-include-default-style variable, or use this option line in the Org file.
#+OPTIONS: html-style:nil
Re: Literate Devops with Emacs Org-Mode (2014)
#63Earlier quoted context omitted.
Org-mode has been nice the few times I've tried it, but without decent mobile support or multi-master syncing, it's hard to adopt it as my main productivity tool. I've tried a few mobile org-mode clients and been universally disappointed. I'm increasingly convinced that the right path forward is to give Emacs an Android port (it's not that hard) and let the mobile org just be the mainline org, perhaps with a layer of…
> without decent mobile support or multi-master syncing, it's hard to adopt it as my main productivity tool. I find that for a true productivity tool, I'm fine relying on my desktop & laptop. I'm actually dialling back what I use my phone for, simply because I can't trust either of the major mobile OSes to respect me & my privacy. It would be awesome to have all of org available on a phone though; you're not wrong at…
Re: Literate Devops with Emacs Org-Mode (2014)
#64Org-mode & Magit really are the secret superpowers of modern emacs. And notmuch (full-text search of one's email, at least one order of magnitude faster than Gmail's!). And elfeed. And gnus. And dired. And pretty much everything else in emacs …
Ive tried so many times to use gnus over the years, without luck. Any suggestions? Or links?
Re: Literate Devops with Emacs Org-Mode (2014)
#65Earlier quoted context omitted.
> without decent mobile support or multi-master syncing, it's hard to adopt it as my main productivity tool. I find that for a true productivity tool, I'm fine relying on my desktop & laptop. I'm actually dialling back what I use my phone for, simply because I can't trust either of the major mobile OSes to respect me & my privacy. It would be awesome to have all of org available on a phone though; you're not wrong at…
On Android, Termux [ https://termux.com/ ] gives you access to Emacs; and it enables using the volume buttons a bit like modifier keys.
Android will kill applications pretty indiscriminately, so your Termux session persistence isn't good.
Terminal performance is poor, especially on scrollback, for some reason.
I've bumped into numerous SSH issues.
My general preference would be for a hybrid tablet/laptop system, running Linux, rather than Android (or iOS). We may eventually get there.
The other thing tablet formats are good for is reading electronic document formats, with an 8" or better tablet size. Though a large eInk device might be better there (again, ideally with shell capabilities).
Re: Literate Devops with Emacs Org-Mode (2014)
#66Org-mode & Magit really are the secret superpowers of modern emacs. And notmuch (full-text search of one's email, at least one order of magnitude faster than Gmail's!). And elfeed. And gnus. And dired. And pretty much everything else in emacs …
Is there some way to tell org exactly how I want it to spit out HTML? I was going to do my blog entirely with org-mode+org-publish, but it spits out a mess of HTML and also a small bit of js for some reason, so I'm just writing html directly myself now. I don't really find writing html myself all that annoying or anything, but it'd be nice if I could get org to generate really clean/simple HTML for me that I could th…
Re: Literate Devops with Emacs Org-Mode (2014)
#67Org-mode and babel sound like good ideas, but in practice I've found it very finicky to use. My main problem with it is that, unlike with executing commands in the shell, with org you don't get any progress, and emacs seems to hang while running the command. For example, running apt update tends to freeze emacs without any progress reporting for a few minutes. I'm hoping that I'm doing something wrong and that someon…
It's not 'freezing' Emacs so to speak, source block execution is synchronous. Check out: https://github.com/astahlman/ob-async if you want to change that.
I still struggle to see how people actually use this with devops on a day to day basis.
I think that some type of integration with tmux would work well - have a running tmux session, and then just queue commands from emacs to that session, instead of running directly through emacs.
Re: Literate Devops with Emacs Org-Mode (2014)
#68Org-mode & Magit really are the secret superpowers of modern emacs. And notmuch (full-text search of one's email, at least one order of magnitude faster than Gmail's!). And elfeed. And gnus. And dired. And pretty much everything else in emacs …
Is there a good side-by-side video of someone using magit vs the command line? I keep reading the documentation for magit, and I can't really imagine it giving me a huge advantage over GitX plus good command line completion settings.
Re: Literate Devops with Emacs Org-Mode (2014)
#69Org-mode & Magit really are the secret superpowers of modern emacs. And notmuch (full-text search of one's email, at least one order of magnitude faster than Gmail's!). And elfeed. And gnus. And dired. And pretty much everything else in emacs …
https://github.com/Wilfred/ag.el
Read find-grep exclusion patterns from a .findignore file: https://emacs.stackexchange.com/a/19038/6682
Re: Literate Devops with Emacs Org-Mode (2014)
#70Org-mode & Magit really are the secret superpowers of modern emacs. And notmuch (full-text search of one's email, at least one order of magnitude faster than Gmail's!). And elfeed. And gnus. And dired. And pretty much everything else in emacs …
Is there some way to tell org exactly how I want it to spit out HTML? I was going to do my blog entirely with org-mode+org-publish, but it spits out a mess of HTML and also a small bit of js for some reason, so I'm just writing html directly myself now. I don't really find writing html myself all that annoying or anything, but it'd be nice if I could get org to generate really clean/simple HTML for me that I could th…
The JS is for interacting with tables, if I'm not wrong.