seekinfox
KPCKevin Powell - Community
•Created by seekinfox on 11/21/2023 in #front-end
String to markdown
Problem:
I have a paragraph string that is having multiple points I.e. ordered list and normal paragraphs before or after ordered list.
It is not formatted.
Is there way or any library I can use to easily identify paragraphs and lists and format it.
I want to use this string to render a paragraph.
3 replies
KPCKevin Powell - Community
•Created by seekinfox on 11/16/2023 in #front-end
Next js routing issue, AWS, S3
scenario 1 : after website loads navigate to a page from navbar , it loads , refresh it , page fails to load
scenario 2 : after website loads , in url add /home , it fails to load with same error
1 replies
KPCKevin Powell - Community
•Created by seekinfox on 9/25/2022 in #front-end
set state dynamically
function changeInput (event, property) {
if (event.target.value) { setInput(prevInput => {
return {...prevInput,
[property]: [...prevInput.[property], event.target.value]
}
})
3 replies