withspectrum / draft-js-markdown-plugin

An opinionated DraftJS plugin for supporting Markdown syntax shortcuts
https://markdown-plugin.spectrum.chat/
MIT License
139 stars 42 forks source link

Can I get the header-one text from editor #159

Closed tageecc closed 5 years ago

tageecc commented 5 years ago

Which i need to auto-gengrate the article's title

thx~

mxstbr commented 5 years ago

You want to iterate through the rawContentState.blocks to find the one with the type === 'header-one' I think!

tageecc commented 5 years ago

You want to iterate through the rawContentState.blocks to find the one with the type === 'header-one' I think!

yeah! you are right. thank you very much!