Nicolas Goaziou <m...@nicolasgoaziou.fr> writes:

> Hello,
>
> Eric Abrahamsen <e...@ericabrahamsen.net> writes:
>
>> For example, the below looks like something you'd find in an Emacs
>> manual.
>>
>> #+BEGIN_SRC texinfo
>>   @table @kbd
>>   @item C-x C-f
>>   @kindex C-x C-f
>>   @findex find-file
>>   Visit a file (@code{find-file}).
>>   @item C-x C-r
>>   @kindex C-x C-r
>>   @findex find-file-read-only
>>   Visit a file for viewing, without allowing changes to it
>>   (@code{find-file-read-only}).
>>   @end table
>> #+END_SRC
>
> [...]
>
>> But the items are exported incorrectly, with each list item in its own
>> itemize environment. How would I get something closer to the texinfo
>> output above?
>
>   #+attr_texinfo: :indic @kbd
>   - C-x C-f :: 
>
>        #+kindex: C-x C-f
>        Visit a file (~find-file~).
>
>
>   - C-x C-r ::
>
>        #+kindex: C-x C-r
>        #+findex: find-file-read-only
>
>        Visit a file for viewing, without allowing changes to it
>        (~find-file-read-only~).

Thank you!
Eric


Reply via email to