Coder Social home page Coder Social logo

Comments (2)

wchrisjohnson avatar wchrisjohnson commented on August 28, 2024 2

+1 for the ability to handle multiple markdown files, TOC, etc. We are currently having to maintain all the example code for a project I'm involved with in one large file and it's getting cumbersome to do so in markup. I'd like to either be able to 1) combine many individual markdown files into one single file and kick out a markup file, or 2) be able to simulate the same via the TOC approach that @Mevrael notes above.

Thanks for a nice, clean toolkit for doing this sort of thing!

from markdown-styles.

Mevrael avatar Mevrael commented on August 28, 2024 1

Right now I am doing it with iframe:

layout's page.html:

  {{#if headings}}
  <div class="row">
    <menu>
      <iframe src="{{asset '../toc.html'}}">TOC</iframe>
    </menu>
    <main class="markdown-body">
      {{~> content}}
    </main>
  </div>
  {{else}}
    <div class="markdown-body">
      {{~> content}}
    </div>
  {{/if}}

in <head> add this line so iframe would open links in main window:

<base target="_parent" />

And create toc.md in src root without any heading. Each other file should have heading. This is simple if statemenet how I determine is it toc or normal page to prevent rendering toc in toc itself.

I extended github layout and added this simple css to make two column layout and auto numbering in nested list:

ol {
    counter-reset: section;
    list-style-type: none !important;
}

li {
    font-weight: normal;
}

.markdown-body > ol > li {
    font-weight: bold;
    margin-bottom: 20px;
}

ol ol {
    list-style-type: none !important;
}

ol li::before {
    counter-increment: section;
    content: counters(section,".") ". "; 
}

body {
    max-width: none;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

.row {
    height: calc(100% - 60px);
    float: left;
}

menu {
    width: 450px;
    height: 100%;
    display: inline-block;
    margin: 0 -100% 0 0;
    padding: 30px 0;
    vertical-align: top;
    float: left;
}

main {
    display: inline-block;
    margin: 0 0 0 450px;
    padding: 30px 30px 30px;
    vertical-align: top;
}

iframe {
    border: none;
    width: 100%;
    height: 100%;
}

a:not([href]) {
    color: black !important;
    text-decoration: none !important;
}

from markdown-styles.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.