[READ-ONLY] Mirror of https://github.com/bombshell-dev/ansx.
0

Configure Feed

Select the types of activity you want to include in your feed.

add todo

Nate Moore (Nov 6, 2024, 8:55 AM -0600) fe2cf041 7b061287

+4 -1
+4 -1
index.ts
··· 23 23 if (name === Fragment) return children; 24 24 const renderers: ((str: string) => string)[] = []; 25 25 if (attributes.style) { 26 - // Handle styles 26 + // TODO: 27 + // parse complex style values (React Native style) 28 + // normalize capitalization 29 + // add proper layout algorithm 27 30 const { background, color, "padding-inline": paddingInline, "margin-left": marginLeft } = attributes.style; 28 31 if (paddingInline) { 29 32 const space = ' '.repeat(Number.parseInt(paddingInline, 10));