I'm a recent user of asciidoc and still having trouble with some of
the error messages. When trying to process my text file I end up
getting the same error about a "missing closing delimiter".

I get problems on:
---- START OF TEXT ----

As variáveis com os dados, que **têm de ser em número igual ao de
especificadores de formato**, são colocadas depois da vírgula que
termina o primeiro parâmetros, e são elas mesmas separadas por
vírgulas.

-----------------------------------------------------------------
printf(" texto com especificadores ", variável1, variável2, etc);
-----------------------------------------------------------------

.Exemplo de uso da função
[source,c]
----------------------------------------------------------------------------------
int num_dentes = 31;
char ultima_letra = 'l';
char animal[] = "Raposa";

printf("Uma grande %s Azu%c com %d dentes!", palavra, ultima_letra,
num_dentes);
//...
----------------------------------------------------------------------------------

Se colocarmos o código anterior dentro da função main e executarmos o
programa o resultado obtido é:

--------------------------------------
Uma grande Raposa Azul com 31 dentes!
--------------------------------------

---- END OF TEXT ----

The error is reported in the first blank line after the C code block,
I think asciidoc is seeing the closing line as a start line instead
but I can't understand why.

I can share my file, if it's needed, and don't know if it's important
but I'm following the steps explained at
http://www.stevestreeting.com/2010/03/07/building-a-new-technical-documentation-tool-chain/
to create a PDF file.

-- 
You received this message because you are subscribed to the Google Groups 
"asciidoc" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/asciidoc?hl=en.

Reply via email to