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

Markdown #300

Closed
shawndotey opened this issue Dec 20, 2014 · 3 comments · Fixed by #302
Closed

Markdown #300

shawndotey opened this issue Dec 20, 2014 · 3 comments · Fixed by #302
Assignees
Labels
Milestone

Comments

@shawndotey
Copy link

While adding Markdown as an @example, I get extra tab indent like so:

                                        var Something = function(iBase) {
                                            return {

                                                do : function() {
                                                    alert("i do this")
                                                }
                                            };
                                        }
                                        var More = function(iBase) {

                                            return {

                                                doMore : function() {
                                                    alert("i do more")
                                                }
                                            };
                                        }
                                        More.TooMuch = function(iBase) {

                                            return {

                                                doOverload : function() {
                                                    alert("i do tooMuch")
                                                }
                                            };
                                        }
                                        iBase.installComponent("Something", Something);

                                        iBase.installComponent("Something.More", More);
                                        var foo = iBase.Something.More.TooMuch();
                                        foo.do();
                                        foo.doMore();
                                        foo.doOverload(); 

in the source code, i have just a single tab indent.

see http://infinitycbs.com:5858/documentation/classes/InfinityFramework.html#method_installComponent

for example

@okuryu
Copy link
Member

okuryu commented Dec 20, 2014

Thanks for your report! It seems to be a bug. I'll try to take a look.

@okuryu okuryu added the bug label Dec 20, 2014
okuryu added a commit to okuryu/yuidoc that referenced this issue Dec 21, 2014
This resolves yui#300, this issue arises from the same causes as yui#288.
@okuryu okuryu self-assigned this Dec 21, 2014
@okuryu
Copy link
Member

okuryu commented Dec 21, 2014

#302 is ready for review.

@okuryu
Copy link
Member

okuryu commented Dec 23, 2014

#302 has been merged. It'll be available in the next release.

@okuryu okuryu modified the milestone: v0.5.0 Dec 23, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants