Hi
> I'd like to add ACE to the IPython Notebook,
cool!
> is it possible to link an editor to a particular class, instead of a div ID
you can pass element instead of id
elements = document.querySelectorAll(".editor_class")
for (var i = 0; i < elements.length; i++) {
ace.edit(elements[i])
}