Using nbconvert to remove tagged cells from jupyter notebook results in charts not displaying in html output

When following the nbconvert doumentation here, using the command line tool to remove cells with the ‘skip’ tag as per below, plotly charts are not displaying in the html output.

jupyter nbconvert notebook.ipynb --to html --no-input --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags skip --output-dir="C:\notebook_export"

Is there any way for me to export specific notebook cells with plotly output for those cells remaining unaffected?