<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">Le 9 avr. 2015 à 5h15, Eduardo San Miguel <<a href="mailto:eduardo@simplej.com" class="">eduardo@simplej.com</a>> a écrit :</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">Thanks!! This worked!!<div class=""><br class=""></div><div class="">Though I had to delete the grave accent in:</div><div class=""><br class=""></div><div class=""><span style="font-size: 12.8000001907349px;" class="">("\`<!DOCTYPE HTML" . web-mode)</span></div><div class=""><br class=""></div><div class="">and ended up like: </div><div class=""><br class=""></div><div class=""><span style="font-size: 12.8000001907349px;" class="">("\<!DOCTYPE HTML" . web-mode)</span> </div><div class=""><br class=""></div></div></div></blockquote><br class=""></div><div>This is probably incorrect.  In a regexp backslash-backquote means "matches the empty string, but only at the beginning of the buffer or string being matched against", that is, the string "<!DOCTYPE" matches only if it is at the beginning of the file.  What you wrote (backslash-lessthan) means "matches the empty string, but only at the beginning of a word",  probably not what you mean.  If backquote doesn't work, try without the backslash, i.e.</div><div><span class="Apple-tab-span" style="white-space:pre">      </span><span style="font-size: 12.8000001907349px;" class="">("<!DOCTYPE HTML" . web-mode)</span></div><div><span style="font-size: 12.8000001907349px;" class=""><br class=""></span></div><div><span style="font-size: 12.8000001907349px;" class=""><span class="Apple-tab-span" style="white-space:pre">                                                                             </span>Marc</span></div><div><span style="font-size: 12.8000001907349px;" class=""><br class=""></span></div><br class=""></body></html>