If the text between the marker lines consists of one or more lines:
sed '//,// {//!d}; //aSome text to insert' a.html
The i command can be changed to the r command and the file name to read text from the file.
sed '//,// {//!d}; //r filename' a.html
Dennis williamson
source share