summaryrefslogtreecommitdiffstats
path: root/2020/info/22.md
blob: 6e616cda12c0716bc6661373fbb7451daa141bed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# Powering-up Special Blocks
Musa Al-hassy

[[!template id=vid src="https://mirror.csclub.uwaterloo.ca/emacsconf/2020/emacsconf-2020--22-powering-up-special-blocks--musa-al-hassy.webm"]]  
[Download compressed .webm video (29.2M)](https://mirror.csclub.uwaterloo.ca/emacsconf/2020/smaller/emacsconf-2020--22-powering-up-special-blocks--musa-al-hassy--vp9-q56-video-original-audio.webm)

Users will generally only make use of a few predefined \`special
blocks', such as \`example, centre, quote', and will not bother with
the effort required to make new ones.  When new encapsulating notions
are required, users will either fallback on HTML or LaTeX specific
solutions, usually littered with \`#+ATTR' clauses to pass around
configurations or parameters.

Efforts have been exerted to mitigate the trouble of producing new
special blocks.  However, the issue of passing parameters is still
handled in a clumsy fashion; e.g., by having parameters be expressed
in a special block's content using specific keywords.

We present a novel approach to making special blocks in a familiar
fashion and their use also in a familiar fashion. We achieve the
former by presenting \`\`defblock'', an anaphoric macro exceedingly
similar to \`\`defun'', and for the latter we mimic the usual
\`\`src''-block syntax for argument passing to support special blocks.

For instance, here is a sample declaration.

    (defblock stutter () (reps 2)
      "Output the CONTENTS of the block REPS many times"
      (org-parse (s-repeat reps contents)))

Here is an invocation that passes an *optional* argument; which
defaults to 2 when not given.

<div class="stutter">
<p>
Emacs for the win ⌣̈
</p>

</div>

Upon export, to HTML or LaTeX for instance, the contents of this block
are repeated (\`stuttered') 5 times.  The use of \`\`src''-like
invocation may lead to a decrease in \`#+ATTR' clauses.

In the presentation, we aim to show a few \`practical' special blocks
that users may want: A block that &#x2026;

-   translates *some selected* text &#x2014;useful for multilingual blogs
-   hides *some selected* text &#x2014;useful for learning, quizzes
-   folds/boxes text &#x2014;useful in blogs for folding away details

In particular, all of these examples will be around ~5 lines long!

We also have a larger collection of more useful block types, already
implemented.

The notable features of the system are as follows.

-   Familiar \`\`defun'' syntax for making block &#x2014;\`\`defblock''
-   Familiar \`\`src'' syntax for passing arguments &#x2014;e.g., \`\`:key
    value''
-   Fine-grained control over export translation phases &#x2014;c.f.,
    \`\`org-parse'' above
-   **Modular**: New blocks can be made out of existing blocks really
    quickly using \`\`blockcall'' &#x2014;similar to Lisp's \`\`funcall''.  We
    will show how to fuse two blocks to make a new one, also within ~5
    lines.

It is hoped that the ease of creating custom special blocks will be a
gateway for many Emacs users to start using Lisp.

## Resources

<https://alhassy.github.io/org-special-block-extras/emacs-conf-2020>

<!-- from the pad --->

- Actual start and end time (EST): Start: 2020-11-29T09.19.39; Q&A:
  2020-11-29T09.36.14; End: 2020-11-29T09.48.34

# Questions

## Should packages implement the interface to one specific format, or attempt to be conclusive to all the potential output targets?

## How to share "recipes"? Will this become a "large" project, or minimal that requires you to write most customizations yourself?

## Could you make slides that show the source form on the left and the output on the right? That would make understanding each capability much simpler.

## Does typing in a block mess up the syntax highlighting? Usually themes use a single color inside an example block, for example.
"You found my crutch!". Colors in source code blocks within blocks are
hard. Didn't have time yet to implement it. Any help is appreciated!
:)

- That's where you can get help from org-mode core developers ;)

## If you export to LaTeX->PDF does that work well with beamer as well? To create slides with columns for example?
You have to format the LaTeX appropriately for the backend "beamer".

## How does this relate to pandoc, which is used for converting between markup formats?

## Side question about org-reveal: How do you get bespoke/multiple-column layouts without using #+HTML (and <div>) everywhere in the Org file?
It's a custom `#begin_parallel` block! See the main article linked
below.

Parallel section:
<https://alhassy.github.io/org-special-block-extras/#Parallel>

## What is used to produce colorful boxes around the cursor in your browser?
Commercial software called ScreenBrush.

## Why did you put optional arguments in a separate list rather than using cl-style argument lists?  e.g. (defblock feedback (who &optional (color "red")) &#x2026;)
The first argument may take some meta-information when you define it,
which is easier to handle with two arguments.

## Do you intend to try to upstream this amazing work into Org? :)
No prior experience on how to upstream; suggestions and help
appreciated.

- <https://orgmode.org/contribute.html>.
- Yes, I would suggest simply posting a short proposal for an
  org-defblock macro on the orgmode mailing list, and hopefully
  Bastien and other maintainers like Nicolas will discuss it with you.
  I think they would be excited to have this feature standardized in
  Org. +1+1+1+1 I am excited+1+1

Add a little beginner-focused documentation and this becomes another
great reason to use Org over Markdown, I imagine the maintainers would
love to have it.

# Notes
- Main article: <https://alhassy.github.io/org-special-block-extras/>
  (HTML or 48 page PDF).
- Slides for this talk:
  <https://alhassy.github.io/org-special-block-extras/emacs-conf-2020>.
- [Reddit
  discussion](https://www.reddit.com/r/emacs/comments/k2whsy/declaring_new_special_blocks_with_arguments/).
- Elisp Reference Sheet:
  <https://alhassy.github.io/ElispCheatSheet/CheatSheet.pdf>.
- My Emacs init:
  <https://github.com/alhassy/emacs.d#a-life-configuring-emacs>.