changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/organ/element/greater/inline-task.lisp

changeset 698: 96958d3eb5b0
parent: a5ae5a58c4cd
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; lib/organ/element/greater/inlinetask.lisp --- Org Inline Task Element
2 
3 ;; Inlinetasks are kinda weird - they're syntactically a heading with
4 ;; a level of at least *ORG-INLINETASK-MIN-LEVEL*. Usually this means
5 ;; a lot of stars.
6 
7 ;; You can nest elements inside an inlinetask by adding a second
8 ;; heading at the same level with a title of 'END' and no other
9 ;; syntax. Otherwise the inlinetask is a unit and won't consume the
10 ;; contents on the following lines.
11 
12 ;;; Code:
13 (in-package :organ)
14 
15 ;; TODO
16 (define-org-element inlinetask (headline contents) :greater t)