diff --git a/webclient/src/Article.js b/webclient/src/Article.js index 6d74d2e..5a363c8 100644 --- a/webclient/src/Article.js +++ b/webclient/src/Article.js @@ -15,6 +15,7 @@ class Article extends React.Component { this.state = { story: cache[id] || false, error: false, + pConv: [], }; } @@ -43,10 +44,22 @@ class Article extends React.Component { ); } + pConvert = (n) => { + this.setState({ pConv: [...this.state.pConv, n]}); + } + render() { const id = this.props.match ? this.props.match.params.id : 'CLOL'; const story = this.state.story; const error = this.state.error; + const pConv = this.state.pConv; + let nodes = null; + + if (story.text) { + let domparser = new DOMParser(); + let doc = domparser.parseFromString(story.text, 'text/html'); + nodes = doc.querySelector('body').children; + } return (
Problem getting article :(
} diff --git a/webclient/src/Style-light.css b/webclient/src/Style-light.css index 8516b59..18e999e 100644 --- a/webclient/src/Style-light.css +++ b/webclient/src/Style-light.css @@ -4,6 +4,7 @@ body { color: #000000; margin-bottom: 100vh; word-break: break-word; + font-kerning: normal; } a {