From mboxrd@z Thu Jan 1 00:00:00 1970 From: Texas Cyberthal Subject: Prose with markup needs more line spacing [legibility 5/6] Date: Tue, 4 Feb 2020 12:10:13 +0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:48369) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iypY3-0007NA-48 for emacs-orgmode@gnu.org; Mon, 03 Feb 2020 23:10:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iypY2-0007Pm-8l for emacs-orgmode@gnu.org; Mon, 03 Feb 2020 23:10:51 -0500 Received: from mail-oi1-x22b.google.com ([2607:f8b0:4864:20::22b]:38122) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iypY2-0007MI-3T for emacs-orgmode@gnu.org; Mon, 03 Feb 2020 23:10:50 -0500 Received: by mail-oi1-x22b.google.com with SMTP id l9so13294948oii.5 for ; Mon, 03 Feb 2020 20:10:50 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane-mx.org@gnu.org Sender: "Emacs-orgmode" To: "emacs-orgmode@gnu.org" Code requires less line spacing. It has more whitespace, fewer capital letters, and no markup such as underlining. Code is read differently than prose; it requires less sequential scanning. Prose has big blocks of text with taller capital letters that must be scanned sequentially. The tall bits bump into lines above and below. Org prose adds markup. Underlining and all-caps tags are common. This requires a bit more line spacing for optimal legibility: #+begin_src elisp ;; prose with markup needs more line spacing (defun leo-space-lines () (setq line-spacing 0.175)) (add-hook 'org-mode-hook 'leo-space-lines) #+end_src