File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,14 @@ My personal blog, made with the following technologies:
66- Styled Components
77- CSS
88- Prism React Renderer
9- - Sanity.io headless CMS
9+ - Sanity.io headless CMS
10+
11+ ## TODOs
12+ - [ ] store theme preference in local storage
13+ - [ ] add logic that checks if manual published date is set before sorting
14+ - [ ] fix tags associated with unpublished posts to not be displayed
15+ - [ ] change how aside is serialized from asterisk
16+ - [ ] setup code block rendering from within asides
17+ - [ ] add internal links between posts
18+ - [ ] optimize loading data from Sanity
19+ - [ ] figure out what's going on with blank spans around inline code?
Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ function Post(props) {
315315 // TODO: test if list rendering works correctly with multiple lists in post
316316 let list = [ ]
317317 props . body && props . body . forEach ( section => {
318- console . log ( 'section: ' , section )
318+ // console.log('section: ', section)
319319 if ( section . listItem ) {
320320 list . push (
321321 < ListItem key = { section . _key } > { formatListItem ( section . children ) } </ ListItem >
You can’t perform that action at this time.
0 commit comments