seekinfox
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
<Error>
<Code>AccessDenied</Code>
<Message>Access Denied</Message>
<RequestId>NKYYDG9EM45EFYAR</RequestId>
<HostId>1z6VJOtviwG1zOWNmNhPJgytVBxoN6l2MADveDzbCVxXePKtxb6ORdG+mOTVhfoqz7alVdOoYm4=</HostId>
</Error>
<Error>
<Code>AccessDenied</Code>
<Message>Access Denied</Message>
<RequestId>NKYYDG9EM45EFYAR</RequestId>
<HostId>1z6VJOtviwG1zOWNmNhPJgytVBxoN6l2MADveDzbCVxXePKtxb6ORdG+mOTVhfoqz7alVdOoYm4=</HostId>
</Error>
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