Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #162

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#LimeJS
# LimeJS

##Getting started:
## Getting started:

###Mac OS X and Linux users:
### Mac OS X and Linux users:

- Requirements: Python 2.6+, Git
- Clone the git repo (you have probably already done that):
Expand All @@ -25,7 +25,7 @@
- documentation is at <http://limejs.digitalfruit.ee/docs/>


###Windows users:
### Windows users:

If you consider yourself advanced user and know how to use Git/Python you are probably better off reading through Mac/Linux guide and choosing your best alternative tools/methods yourself. If not then follow this step-by-step route.

Expand Down Expand Up @@ -64,15 +64,15 @@ If you consider yourself advanced user and know how to use Git/Python you are pr



##Browser support:
## Browser support:

- *Current:* Chrome, Safari 5, Firefox 3.6+, Opera, IE9, Mobile Safari
- *Soon:* Android, Blackberry Playbook
- *Maybe:* WebOS



##Links:
## Links:

Closure Library: <https://developers.google.com/closure/library/>

Expand Down
2 changes: 1 addition & 1 deletion lime/guide/7_building.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Building
# Building

If you have followed along previous examples you may have looked up how the internals looked like in [Firebug](http://getfirebug.com/) or Webkit Developer Tools. What you see there in the Resources tab may have not made you happy. Even the Hello World example loads in lot of different Javascript files and their total size is huge. Not quite the way [YSlow](http://developer.yahoo.com/yslow/) or [Google Page Speed](http://code.google.com/speed/page-speed/) have told how it should be done and a nightmare to distribute.

Expand Down
26 changes: 13 additions & 13 deletions lime/guide/8_faq.md
Original file line number Diff line number Diff line change
@@ -1,57 +1,57 @@
#FAQ
# FAQ

*This is a draft*

This page combines answers to some of the common problems/questions that have come up in the forums. If you can't find a solution from here post your question to to [Google Groups page](http://groups.google.com/group/limejs/topics) or [GitHub issues](https://github.com/digitalfruit/limejs/issues) page.


###Where should I start? What is the first step?
### Where should I start? What is the first step?

Read the *README* file. Many times if needed. If any terms confuse you type them into Google. Try to get the demos or helloworld running and continue from there.


###So I saw mention of `lime.py` in the README. Is LimeJS about writing Python code that is transformed to run in the browser?
### So I saw mention of `lime.py` in the README. Is LimeJS about writing Python code that is transformed to run in the browser?

Absolutely not! `Lime.py` is just a helper tool to speed up running some common tasks during development process. It could have been written in any language. We picked Python because Google's Closure tools are also written and Python and choosing any other language would have resulted adding extra dependency. LimeJS is pure Javascript library and developing on it does not require understanding Python.


###I ran `init` and `create helloworld` but nothing shows up in the browser.
### I ran `init` and `create helloworld` but nothing shows up in the browser.


###While running `build` I get a cryptic error message about "namespace % already defined".
### While running `build` I get a cryptic error message about "namespace % already defined".


###I'm confused. Some weird files seem to be searched by lime.py.
### I'm confused. Some weird files seem to be searched by lime.py.


###Build returns empty file.
### Build returns empty file.


###I made a change and now I get blank screen. Help!
### I made a change and now I get blank screen. Help!

Debugging is just a part of development process. Get to know how your browsers' development tools work. We recommend [Webkit Development Tools](http://www.youtube.com/watch?v=N8SS-rUEZPg) but [Firebug](http://getfirebug.com) should also be a fine choice.


###I'm trying to use a new object I found from the documentation but it seems to be undefined.
### I'm trying to use a new object I found from the documentation but it seems to be undefined.

Most of the classes are not included by default and you have to include them manually. Add line `goog.require('lime.some.Class')` to the beginning of your file where you need to use it.


###WTF. Undefined has no method `setScale()`?
### WTF. Undefined has no method `setScale()`?

You are creating a new shape without `new` operator before the constructor. Change the line that says `var myshape = lime.Sprite()` to `var myshape = new lime.Sprite()`.


###I found a bug/have a feature request. Where should I report it?
### I found a bug/have a feature request. Where should I report it?

Best way is to post it to out [GitHub issues](https://github.com/digitalfruit/limejs/issues) page. If you don't have a GitHub account you can just post it to the [forums](http://groups.google.com/group/limejs/topics).


###I'd like to help out developing LimeJS. Where should I start?
### I'd like to help out developing LimeJS. Where should I start?

Make an account at [GitHub](http://github.com) and fork our [repository](http://github.com/digitalfruit/limejs). Make your changes and set up a pull request. If you need ideas about what parts to work on check the to-do list in the [README](https://github.com/digitalfruit/limejs/blob/master/README.md) or look at the [forums](http://groups.google.com/group/limejs/topics) or ask us.


###Whats the deal with Box2D?
### Whats the deal with Box2D?

http://groups.google.com/group/limejs/browse_thread/thread/f2584b367d5439c4