I'm wondering if it is possible to display lines from an org table on my agenda.
Suppose I have an org file with the following content:
* expense | <2017-08-17 15:11> | 13.00 | barber | :care: | | <2017-08-17 12:06> | 7.60 | lunch | :food: | I would like to see the following on my agenda:
Donnerstag 17 August 2017 8:00...... ---------------- 10:00...... ---------------- 12:00...... ---------------- gtd: 12:06...... 7.60 lunch :food: 14:00...... ---------------- gtd: 15:11...... 13.00 barber :care: But unfortunately, the following is displayed:
Donnerstag 17 August 2017 8:00...... ---------------- 10:00...... ---------------- 12:00...... ---------------- gtd: 12:06...... expense 14:00...... ---------------- gtd: 15:11...... expense If I do string-replace "|<" with "** <" and then "|" with " " (whitespace) I get the desired result.
Is there any way to make it work without modifying the table?