Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't seem to be able to insert the xml declaration in my code.

(insert "<?xml version="1.0" encoding="UTF-8" standalone="no" ?>")

It's an easy question but I can't figure it out!

share|improve this question
This wasn't really a good question! I know.. I couldn't remove it cause it has already answer in it.. Sorry StackOverflow Guys! – Arash Aug 4 '12 at 19:59

2 Answers

up vote 2 down vote accepted
 (insert "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>")

This should work

share|improve this answer
I know that this was really a stupid question.. Anyways, thanks a lot! – Arash Aug 4 '12 at 19:56

http://www.gnu.org/software/emacs/manual/html_node/elisp/Syntax-for-Strings.html

To include a double-quote in a string, precede it with a backslash; thus, "\"" is a string containing just a single double-quote character.

share|improve this answer

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.