Mmm, more info... I've tested with a hard-coded markmin input (the example 
one, that I attach), and it fails also in GAE... Don't know what's 
happening cause there is no log in the appengine dashboard (there is even 
no warnings). Simply it renders the content without loading the css and js 
from reveal.

Cheers
PAblo


El domingo, 23 de junio de 2013 19:50:36 UTC+2, peibol escribió:
>
> Hi all!
> I'm adapting the reveal-slides implementation made by Massimo, by using as 
> input a page from the builtin wiki. Pretty cool! In local, everything runs 
> great, but when running in gae, some issue with the codification in the db 
> made the thing weird. There is even no show of the reveal css... But if I 
> use a string as input it works.
>
> Any hint about how to deal with these gae codification issues?
>
> Thanks
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


 text2="""# title

### author

## Overview

- Make a file ``test.mm`` using markmin syntax explained below.
- Run: ``libs/make.py test.mm > test.html``
- open ``test.html``

## Syntax example

``
**bold**
''italic''
-----
quote
-----
[[link http://google.com]]
``

renders as 

**bold**
''italic''
-----
quote
-----
[[link http://google.com]]

## Embedding images

``
[[image http://bit.ly/KYqon8 center 200px]]
``

renders as

[[image http://bit.ly/KYqon8 center 200px]]

## Embedding code

``
!`!!`!
def index():
    print 'hello world'
!`!!`!
``

renders as

``
def index():
    print 'hello world'
``

## Embedding Latex Formulas

``
\[ \int_a^b sin(x) dx \]
``

renders as 

\\\[ \int_a^b sin(x) dx \\\]
\\( \int_a^b sin(x) dx \\)

Use ``\\(...\\)`` for inline formulas.

## Embedding videos

``
!`!!`!<iframe src="http://player.vimeo.com/video/25242353"; width="400" 
height="250" frameborder="0" webkitAllowFullScreen mozallowfullscreen 
allowFullScreen></iframe>!`!!`!:html
``

renders as 

``<iframe src="http://player.vimeo.com/video/25242353"; width="400" height="250" 
frameborder="0" webkitA\
llowFullScreen mozallowfullscreen allowFullScreen></iframe>``:html

## Embedding a table

``
------------------------------------
**test** | 0        | 0
0        | ''test'' | 0
0        | 0        | \( x^{x^x} \)
------------------------------------
``

renders as:

------------------------------------
**test** | 0        | 0
0        | ''test'' | 0
0        | 0        | \( x^{x^x} \)
------------------------------------


"""

Reply via email to