trulia / hologram

A markdown based documentation system for style guides.
http://trulia.github.io/hologram
Other
2.16k stars 199 forks source link

Does not work for Rails 4.0.x projects utilizing the Asset Pipeline #241

Closed acconrad closed 5 years ago

acconrad commented 9 years ago

Running the hologram command line tool generates from _header.html with the following stylesheets:

<link rel="stylesheet" href="./your_stylesheet_here.css">

The problem is that the asset pipeline no longer allows this file structure since assets are timestamped and do not live in that folder in such a static fashion.

amiuhle commented 9 years ago
<link rel="stylesheet" href="/assets/application.css">

works fine.