fsprojects / FsReveal

FsReveal parses markdown and F# script file and generates reveal.js slides.
http://fsprojects.github.io/FsReveal
258 stars 100 forks source link

markdown files don't create tooltips properly. #63

Closed nicholas-peterson closed 9 years ago

nicholas-peterson commented 9 years ago

Using a markdown file, typing the line

let add x y = x + y

Generates a pretty printed output in the reveal presentation, but doesn't create the onmouseover parts of the tags needed to display the tooltips. The div's containing the tooltips seem to exist.

I'm basically just editing the slides/index.md and running build.cmd. Anything else needed to make this work?

forki commented 9 years ago

image

mhm. works for me.

nicholas-peterson commented 9 years ago

Ahh, I see now through manipulating my markdown file it's from me not prepending [lang=cs] to some segments of C# code. I enjoyed the larger rendering style when I didn't specify and apparently it was trying to evaluate them all as F# and eventually just gave up. Mystery solved.