fog 0 Posted December 11, 2013 Share Posted December 11, 2013 I'm using postach.io as my blog system. When writing blog about programming the code lost format( all spaces earsed on pasting to editor )(define (test) (let ((i 0)) (display (call/cc (lambda (k) (set! the-continuation k)))) ; The next time the-continuation is called, we start here. (set! i (+ i 1)) i))code above became : (define (test)(let ((i 0))(display (call/cc (lambda (k) (set! the-continuation k)))); The next time the-continuation is called, we start here.(set! i (+ i 1))i))how to keep the spaces? Link to comment
Level 5* gazumped 10,340 Posted December 11, 2013 Level 5* Share Posted December 11, 2013 Not into this myself enough to know yet, but would be surprised if Markup language didn't include provision for quoting code. Evernote tends to be a bit random on the subject of extra spaces.. Link to comment
ScottLougheed 1,316 Posted December 11, 2013 Share Posted December 11, 2013 This post by John Gruber, the creator of Markdown, might help you out a bit:http://daringfireball.net/projects/markdown/syntax#precode Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.