Greg Smith
Greg Smith
I am having this issue. Any news on this?
Here is the code I'm currently using to do this: ```typescript export function dashedToPascal(str: string): string { return str .split('-') .map((str: string): string => str[0].toUpperCase() + str.slice(1)) .join(''); } ```...
Same for `color-image(color)`. What does it do?
@slang800 http://nibstyl.us was a site redesign and documentation update that I contributed but if I recall correctly the reason it wasn't merged was because it didn't have automatic docs generation....
I'm taking a crack at this and hoping to have something to show this week
I did some work today that is here https://github.com/incompl/nib/tree/new-site - Responsive design - Separate documentation page with index - Uses stylus and nib now :cat: I want to work on...
This is what I put together, what do you think? http://nibstyl.us/
I still want to dig through the source and figure out what might be undocumented and add that, but was still hoping someone might be able to provide a list...
Great, I'll do that stuff this week as I have time. Thanks! -Greg On Mon, Jun 16, 2014 at 11:57 AM, Sean Lang [email protected] wrote: > I like the domain...
Today I added the following: - Code source/compiled widget - Sticky documentation sidebar - Nicer URLs I tried the side-by-side method for the code but it was just too wide....