Thread overview
Learning ddoc
Sep 29, 2016
Antonio Corbi
Sep 29, 2016
Jacob Carlborg
Sep 29, 2016
bachmeier
Sep 29, 2016
Antonio Corbi
September 29, 2016
Hi,

I'm in the process of learning how ddoc works.
I've successfully created docs for my code and recently learned how to generate it using dub.

Related to this and after seeing the announcement of the new release of the emsi-containers library, I had a look at its docs (http://economicmodeling.github.io/containers/index.html) but when I cloned the repo and generated it locally its appearance is completely different (no side-bar, different formatting for code examples, etc...), it's simpler, it must lack some css or whatever.

My question is...is there some standard way to generate better-looking doc-pages with ddoc?

Thanks!
Antonio
September 29, 2016
On 2016-09-29 11:35, Antonio Corbi wrote:
> Hi,
>
> I'm in the process of learning how ddoc works.
> I've successfully created docs for my code and recently learned how to
> generate it using dub.
>
> Related to this and after seeing the announcement of the new release of
> the emsi-containers library, I had a look at its docs
> (http://economicmodeling.github.io/containers/index.html) but when I
> cloned the repo and generated it locally its appearance is completely
> different (no side-bar, different formatting for code examples, etc...),
> it's simpler, it must lack some css or whatever.
>
> My question is...is there some standard way to generate better-looking
> doc-pages with ddoc?

I'm pretty sure it's using a non standard Ddoc generator. I know there are several out there, you can have a look here [1]

[1] http://code.dlang.org/

-- 
/Jacob Carlborg
September 29, 2016
On Thursday, 29 September 2016 at 09:35:56 UTC, Antonio Corbi wrote:
> Hi,
>
> I'm in the process of learning how ddoc works.
> I've successfully created docs for my code and recently learned how to generate it using dub.
>
> Related to this and after seeing the announcement of the new release of the emsi-containers library, I had a look at its docs (http://economicmodeling.github.io/containers/index.html) but when I cloned the repo and generated it locally its appearance is completely different (no side-bar, different formatting for code examples, etc...), it's simpler, it must lack some css or whatever.
>
> My question is...is there some standard way to generate better-looking doc-pages with ddoc?
>
> Thanks!
> Antonio

They used https://github.com/economicmodeling/harbored
September 29, 2016
On Thursday, 29 September 2016 at 11:50:26 UTC, bachmeier wrote:
> On Thursday, 29 September 2016 at 09:35:56 UTC, Antonio Corbi wrote:
>> [...]
>
> They used https://github.com/economicmodeling/harbored

Thanks! that's it.
Antonio