emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* BUG: new exporter fails to export a source code with stars at bol
@ 2012-06-03 17:13 Yagnesh Raghava Yakkala
  2012-06-04  6:27 ` Bastien
  2012-06-07 19:31 ` Nicolas Goaziou
  0 siblings, 2 replies; 4+ messages in thread
From: Yagnesh Raghava Yakkala @ 2012-06-03 17:13 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 264 bytes --]


Hello.,

Please try to export attachment org file. the bug is reproduced with minimal
configuration. org version is: Org-mode version 7.8.10 (release_7.8.10-649-gfe2e2f @ /home/yagnesh/.emacs.d/el-get/org-mode/lisp/)

FYI, generated latex file is also attached.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: test.org --]
[-- Type: text/x-org, Size: 68 bytes --]

* Headline
  #+BEGIN_SRC elisp
(message "* one
** two")
  #+END_SRC

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: generated latex file --]
[-- Type: text/x-tex, Size: 868 bytes --]

% Created 2012-06-04 Mon 02:03
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{soul}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{wasysym}
\usepackage{latexsym}
\usepackage{amssymb}
\usepackage{hyperref}
\tolerance=1000
\providecommand{\alert}[1]{\textbf{#1}}
\author{Yagnesh Raghava Yakkala}
\date{\today}
\title{test}
\hypersetup{
  pdfkeywords={},
  pdfsubject={},
  pdfcreator={Generated by Org mode 7.8.10 in Emacs 24.1.50.3.}}
\begin{document}

\maketitle
\tableofcontents
\vspace*{1cm}

\section{Headline}
\label{sec-1}
\#+BEGIN$_{\mathrm{SRC}}$ elisp 
(message ``* one
\subsection{two'')}
\label{sec-1-1}
\#+END$_{\mathrm{SRC}}$
% Generated by Org mode 7.8.10 in Emacs 24.1.50.3.
\end{document}

[-- Attachment #4: Type: text/plain, Size: 115 bytes --]


Thanks.,
-- 
ఎందరో మహానుభావులు అందరికి వందనములు
YYR

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: BUG: new exporter fails to export a source code with stars at bol
  2012-06-03 17:13 BUG: new exporter fails to export a source code with stars at bol Yagnesh Raghava Yakkala
@ 2012-06-04  6:27 ` Bastien
  2012-06-05  5:38   ` Yagnesh Raghava Yakkala
  2012-06-07 19:31 ` Nicolas Goaziou
  1 sibling, 1 reply; 4+ messages in thread
From: Bastien @ 2012-06-04  6:27 UTC (permalink / raw)
  To: Yagnesh Raghava Yakkala; +Cc: emacs-orgmode

Hi Yagnesh,

Yagnesh Raghava Yakkala <hi@yagnesh.org> writes:

>   #+BEGIN_SRC elisp
> (message "* one
> ** two")
>   #+END_SRC

You can use 

#+BEGIN_SRC elisp
  (message "* one\n** two")
#+END_SRC

HTH,

-- 
 Bastien

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: BUG: new exporter fails to export a source code with stars at bol
  2012-06-04  6:27 ` Bastien
@ 2012-06-05  5:38   ` Yagnesh Raghava Yakkala
  0 siblings, 0 replies; 4+ messages in thread
From: Yagnesh Raghava Yakkala @ 2012-06-05  5:38 UTC (permalink / raw)
  To: emacs-orgmode


Hello Bastien.,

Bastien <bzg@gnu.org> writes:

> #+BEGIN_SRC elisp
>   (message "* one\n** two")
> #+END_SRC

Yes, I could got around with that. Just wanted file a bug report. BTW old one
is exporting it fine.

Thanks.,
-- 
ఎందరో మహానుభావులు అందరికి వందనములు
YYR

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: BUG: new exporter fails to export a source code with stars at bol
  2012-06-03 17:13 BUG: new exporter fails to export a source code with stars at bol Yagnesh Raghava Yakkala
  2012-06-04  6:27 ` Bastien
@ 2012-06-07 19:31 ` Nicolas Goaziou
  1 sibling, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2012-06-07 19:31 UTC (permalink / raw)
  To: Yagnesh Raghava Yakkala; +Cc: emacs-orgmode

Hello,

Yagnesh Raghava Yakkala <hi@yagnesh.org> writes:


> Please try to export attachment org file. the bug is reproduced with minimal
> configuration. org version is: Org-mode version 7.8.10 (release_7.8.10-649-gfe2e2f @ /home/yagnesh/.emacs.d/el-get/org-mode/lisp/)
>
> FYI, generated latex file is also attached.

There is no bug here. Stars at colmun 0 always start an
headline. There's no exception to that.

If you need to start a line with a star in a block, protect it with
a comma. This is automatically done when using C-c '.


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-06-07 19:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-03 17:13 BUG: new exporter fails to export a source code with stars at bol Yagnesh Raghava Yakkala
2012-06-04  6:27 ` Bastien
2012-06-05  5:38   ` Yagnesh Raghava Yakkala
2012-06-07 19:31 ` Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).