Max Nikulin writes: > #+options: custom-object(:type la :latex_element foreignlanguage > :latex_pre "{latin}")
mmm, I see it as not very flexible and perhaps too complicated for the user. My idea with the concept of inline-special-block is that it is like the inline version of its older brother. If something like #+begin_foo ... #+end_foo produces things like \begin{foo} ... \end{foo} or <div class="foo"> ... </div> the user should expect something like &foo{...} to produce \foo{...} or <span class=foo>...</span>, etc. The only difference is that there would be an anonymous variant &_{...}. The attributes syntax (in square brackets) adds verbosity, but I understand that it is also very flexible and granular. It doesn't need to be used always, but at least it's there when you need to use it. Furthermore, the user can always define lists of attributes (styles or aliases: I would have preferred the term "style", instead of "alias", but I fear that it will be confused with the HTML attribute of the same name). Furthermore, these lists of attributes can also be used in combination with other single attributes, giving rise to a great possibility of combinations. The fact that there are a number of universal attributes such as :lang, :color, :smallcaps prevents the user from having to figure out which code to use on each backend to produce colored text, small caps or the correct language selector. ":lang ru", for example, will always produce in LaTeX \foreignlanguage{russian}{} (which, in addition, is a command shared by babel and polyglossia) and in HTML lang="ru". And ultimately you could also think about some kind of folding for the attributes part. I believe that this possible new element would solve the need for a native, multipurpose inline text container with properties[1], which until now could only be achieved through macros or links, with the limitations of both elements. Additionally, I think this approach is more flexible than having specific purpose blocks (for languages, colors, etc.). Of course, it would be best not to abuse the attributes. If in a long document one needs to put a single sentence in red, I don't think it is a verbosity problem to put something like &_[:color red]{lorem ipsum dolor}. If you need to put a lot of sentences in red or any other color, it may be a better idea to define some command in LaTeX (\redtext), a class in HTML or a character style in odt. And then it would be enough to use &redtext{lorem ipsum dolor}. [1] Pandoc has the "bracketed spans". According to pandoc manual: #+begin_quote A bracketed sequence of inlines, as one would use to begin a link, will be treated as a Span with attributes if it is followed immediately by attributes: [This is *some text*]{.class key="val"} #+end_quote