org.texi: Fix typo
* doc/org.texi (HTML doctypes): Special block names are case-sensitive. Reported-by: Guilherme Gondim <guilherme@semente.io> <http://permalink.gmane.org/gmane.emacs.orgmode/105896>
This commit is contained in:
parent
6d070db91c
commit
780445c0aa
|
@ -11471,9 +11471,9 @@ enable a few new block-level elements. These are created using arbitrary
|
||||||
#+BEGIN and #+END blocks. For instance:
|
#+BEGIN and #+END blocks. For instance:
|
||||||
|
|
||||||
@example
|
@example
|
||||||
#+BEGIN_ASIDE
|
#+BEGIN_aside
|
||||||
Lorem ipsum
|
Lorem ipsum
|
||||||
#+END_ASIDE
|
#+END_aside
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
Will export to:
|
Will export to:
|
||||||
|
@ -11488,11 +11488,11 @@ While this:
|
||||||
|
|
||||||
@example
|
@example
|
||||||
#+ATTR_HTML: :controls controls :width 350
|
#+ATTR_HTML: :controls controls :width 350
|
||||||
#+BEGIN_VIDEO
|
#+BEGIN_video
|
||||||
#+HTML: <source src="movie.mp4" type="video/mp4">
|
#+HTML: <source src="movie.mp4" type="video/mp4">
|
||||||
#+HTML: <source src="movie.ogg" type="video/ogg">
|
#+HTML: <source src="movie.ogg" type="video/ogg">
|
||||||
Your browser does not support the video tag.
|
Your browser does not support the video tag.
|
||||||
#+END_VIDEO
|
#+END_video
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
Becomes:
|
Becomes:
|
||||||
|
|
Loading…
Reference in New Issue