Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write a simple web app in scheme and I am using Drscheme for the job. I am wondering if there is a way to input html code into a form which then outputs it in html format (into source)? Is there a library that does the job? Everytime I input something it turns out as a string, I need it to be read as html. Can someone help me? Thanks in advance!

share|improve this question
Not sure what you are trying to do. You wan to input HTML source and output it as pretty printed HTML? – Amit Jul 21 '09 at 5:34
I want to input html and append it to the source as HTML. For example, when I am trying to embed a video by submitting it, it returns the object as text. I would like it to be added as html code. – Mark Jul 21 '09 at 5:47

1 Answer

If you want to use HTML template files, then look at the templates in the web server manual. Also, in case you're not familiar with the web server, then see the web server guide for a good introduction.

share|improve this answer
I wonder if there is any way to go from html string to scheme html code. For example, "<html><head><title>My Blog</title></head><body><h1>under construction</h1></body></html>" to: '(html (head (title "My Blog")) (body (h1 "Under construction")))) – Mark Jul 21 '09 at 6:18
1  
Start with a "(" and then for every opening HTML tag "<" insert a "(" and a closing ")" for every HTML closing tag "</". The text remains same of course. You can take a look at the HTML parsing library: docs.plt-scheme.org/html/index.html – Amit Jul 21 '09 at 6:31
in that case it would be: "(html)(head)(title)My Blog(title)(head)(body)(h1)under construction(h1)(body)(html) ? – Mark Jul 21 '09 at 6:41
Note that I told for every closing "</ and not ">". I think that should work. Also note that you will have to "look ahead" of "<" and see the next character. If it is "/" then replace the two chars by a ")", else replace it by a "(". – Amit Jul 21 '09 at 8:38
ok thx for the tip – Mark Jul 21 '09 at 18:03
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.