You are viewing our Forum Archives. To view or take place in current topics click here.
CSS Tidy Web App
Posted:
CSS Tidy Web AppPosted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 2,684
Reputation Power: 122
I thought I'd go ahead and share an app I'm currently working on in case anyone here feels like contributing. The app is a CSS tidier and formatter at its core and is soon to have support for a bunch of different formats and writing styles. Primarily it formats solely using Regular Expressions and String.replace in JavaScript. So if you want to check it out and maybe even give a helping hand, the links are below. Also if you have any general web dev questions then feel free to PM me them or ask me on AIM (JordanCallumA). Anyway, enjoy.
note: Please keep in mind that this app is in it's very early stages (I literally started it about 24 hours ago) and so it may not work in all browsers and is likely to be somewhat buggy.
Working app - [ Register or Signin to view external links. ]
Github repo - [ Register or Signin to view external links. ]
note: Please keep in mind that this app is in it's very early stages (I literally started it about 24 hours ago) and so it may not work in all browsers and is likely to be somewhat buggy.
Working app - [ Register or Signin to view external links. ]
Github repo - [ Register or Signin to view external links. ]
The following 1 user thanked -Jordan- for this useful post:
Z61 (11-18-2011)
#2. Posted:
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
#3. Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 2,684
Reputation Power: 122
#4. Posted:
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
#5. Posted:
Status: Offline
Joined: Dec 05, 201014Year Member
Posts: 922
Reputation Power: 39
Status: Offline
Joined: Dec 05, 201014Year Member
Posts: 922
Reputation Power: 39
Works great! Thought I might as well do mine.
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
I know this is somewhat off topic, but how did you use that font? I know how to change font-family but how did you get a font without us having to install it.
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Jan 24, 201014Year Member
Posts: 1,478
Reputation Power: 106
Status: Offline
Joined: Jan 24, 201014Year Member
Posts: 1,478
Reputation Power: 106
This seems like a great tool, but I think it would be a lot more useful if you made this to work with javascript.
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Derp wrote This seems like a great tool, but I think it would be a lot more useful if you made this to work with javascript.
I believe he said it could possibly support multiple languages in the future.
- 0useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 2,684
Reputation Power: 122
Zachman61 wrote I know this is somewhat off topic, but how did you use that font? I know how to change font-family but how did you get a font without us having to install it.
By using @font-face. FontSquirrel has a lot of webfont kits for it.
Zachman61 wroteDerp wrote This seems like a great tool, but I think it would be a lot more useful if you made this to work with javascript.
I believe he said it could possibly support multiple languages in the future.
There is no plan to make this support JavaScript in the future. When I said it would support multiple formats, I meant writing formats such as...
selector {
prop: val;
}
-------------------
selector { prop: val; }
-------------------
selector
{ prop: val;
prop: val; }
-------------------
selector
{ prop: val; prop: val; }
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
-Jordan- wroteZachman61 wrote I know this is somewhat off topic, but how did you use that font? I know how to change font-family but how did you get a font without us having to install it.
By using @font-face. FontSquirrel has a lot of webfont kits for it.
Zachman61 wroteDerp wrote This seems like a great tool, but I think it would be a lot more useful if you made this to work with javascript.
I believe he said it could possibly support multiple languages in the future.
There is no plan to make this support JavaScript in the future. When I said it would support multiple formats, I meant writing formats such as...
selector {
prop: val;
}
-------------------
selector { prop: val; }
-------------------
selector
{ prop: val;
prop: val; }
-------------------
selector
{ prop: val; prop: val; }
Oh, thats pretty awesome
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.