Plotmol will currently draw multiple molecules in the tooltip image above each other it would be great to have the option to draw the molecules side by side as well. For this we could try and split the molecule using Chem.GetMolFrags(rdkit_mol, asMols=True) and if we have more than one molecule we can break up the SVG into a grid and rdkit should work out where to place the molecules automatically.
Plotmol will currently draw multiple molecules in the tooltip image above each other it would be great to have the option to draw the molecules side by side as well. For this we could try and split the molecule using
Chem.GetMolFrags(rdkit_mol, asMols=True)
and if we have more than one molecule we can break up the SVG into a grid and rdkit should work out where to place the molecules automatically.