On 2019-09-19, Matt Price wrote:
> Over the summer, commit ded3d27b1468b878197e5fe55a70c5e13350ea27
> by Nik Clayton was merged to master. It's a one-line change that
> adds new ~~ tags around each lin of code in html export of
> source blocks. It's useful because it allows individual lines to
>
Hi there,
I wonder about the treatment of different pieces of HTML header
information in org-html--build-meta-info: Contents for the title
element are computed by org-export-data. This interprets Org markup
such as italics or hyperlinks although title elements are not
allowed to contain the resul
An Org file like
# -*- lexical-binding: t; -*-
*bold*
is dispayed as
# -- lexical-binding: t; --
bold
where 'bold' is bold and '- lexical-binding: t; -' is not. Expected: In
comments emphasis marker characters are no emphasis markers and despite
hiding of emphasis markers, something lik
My last bug report on this list was prepared with org-submit-bug-report
in an Emacs with a minimal configuration. From there I copy/pasted the
contents of the resulting mail buffer to an mu4e mail buffer in my fully
configured usual Emacs. Then I finished the bug report and hit send.
mu4e noticed
Hi,
I've a table like this one :
Time for each task
1
00:53
2
03:12
Total
Which formula should I use to obtain the result (hh:mm) of the sum of
the times in the last cell of column 2? I tried this one : #+TBLFM:
@>$2=vsum(@2$2..@3$2). Result : 1:4
Each of these time
I use a very simple property in my assignment descriptions to set the
assignment due date:
:DUE_AT: 2019-09-26
I then pass this to an API which expects a date parameter like
`2019-09-26T23:59:59-04:00`. Since I only work in one time zone, I can
just concat the property value with the additional
For parsing timestamps, you may find this helpful:
https://github.com/alphapapa/ts.el
See e.g. functions ts-parse-org and ts-parse-org-fill.