ContentfulのRichText
Rich Textで1行1行pタグにしたくない
shilt-enterで改行する
code:ts
const options = {
renderText: text => {
return text.split('\n').reduce((children, textSegment, index) => {
}, []);
},
};
renderMark
BOLD
ITALIC
UNDERLINE
CODE
renderNode
HEADINGなど個別のタグに対して処理を行う
renderText
全てのテキストに対して実行される (?)
ユースケースとしては、\nを全て</br>に変更する処理を書くなど