GithubHelp home page GithubHelp logo

gerhobbelt / soldout Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vmg/sundown

8.0 1.0 1.0 11.75 MB

A SciDown derivative fork of the Markdown library that sucks less than your Markdown library.

Home Page: http://fossil.instinctive.eu/libsoldout/

License: ISC License

C 78.23% CMake 0.24% QMake 0.21% Meson 0.33% CSS 1.55% Perl 1.19% HTML 17.31% Python 0.94%

soldout's Introduction

Scidown

Scidown is a fork of libsoldout (T.L.F.K.A.Upskirt), the original written by Natasha Porté, a C Markdown parser and HTML and LaTeX generator. Scidown however parses not only Markdown but also Scidown (yep same name) that support many features useful for scientific and scholar publishing.

For more information on the syntax and example look at the wiki.

More about the motivation and the planning of the project in the manifesto.

Features

  • Integrated plot using charter and experimental support to gnuplot
  • Figures, Tables and Listings with caption
  • YAML header specify title, authors, css style, keywords and more
  • Abstract syntax for defining abstracts
  • Include external files include external files to build complex documents

Markdown Differences

A part of the extension added to the language there is only one difference in the output generated from scidown and upskirt of a standard markdown document:

  • # title becomes <h2>title</h2> instead of <h1>
  • ## subtitle becomes <h3>subtitle</h3> instead of <h2>
  • well I suppose you get it all the headers are shifted of one

This is due the addition of the title information in form of YAML head as explained in the following section.

Compile and Run

To compile the project simply do the following:

git submodule update --init --recursive
mkdir build
cd build
meson ..
ninja

To install it simply run sudo ninja install inside the build folder. The executable scidown will be now available in the build folder, to use it simply:

scidown input.md
# print out the html or to save it
scidown input.md > output.html

Special Syntax

YAML Head

Is possible to add information and configuration in form of a YAML header:

---
title: your title
author: author 1
author: author 2
affiliation: affiliation
style: css file
keywords: list of keywords
numbering: true/false (number the chapters, sections and subsections)
---

Rest of your markdown file

the title, author and keywords will be used both as metadata of the html and displayed in the output.

External Files

Is possible to include external files to make easier work with big documents:

@include(path)

As bibliography only:

@bib(path)

Abstract

The abstract section is particularly useful for possible automatic data retrieval (as in such way is clearly identifiable from the rest of the paper). The output will figure the <h2>Abstract</h2> in the top of the div and at the bottom a div containing the keywords (if defined in the YAML head).

@abstract
Lorem ipsum ....

@/

Table of Contents

To show the table of contents simple use the @toc command:

@toc

# Chapter
Lorem ipsum

## Subsection
Lorem ipsum

Floating elements

Is possible to use floating elements such as figures, listings and tables:

Example:

@figure(ref_id)
![](path)
@caption(your caption)
@/

The code included in the figure is user defined and can be anything not only an image. The ref_id is not obligatory as the caption. The syntax for listings and tables is similar:

@table(id)

@/

@listing(id)

@/

Numbered equation

The numbered equation works as the other floating elements but without any captioning possible:

@equation(id)
x = \sum_{i=1}{N} i
@/

In line and block equation with the classical syntax $inline equation$ and $$block equation$$ are still available but not numbered.

Reference

To refer to a figure, a listing, a table or an equation labeled is enough to write (#id) and it will be replaced by (<a href="#id">number</a>) where number is the number that appear in the caption.

Plots

using the charter syntax in a code block:

```charter
plot:
  x: 1 2 3 4
  y: math:x^2
```

Example

An example of scidwon syntax is available in the examples/ folder.

Some LaTeX and PDF generated from scidown are available in the same as well: article, report

This is a screenshot of the parsing of a simple example using the scidown_article.css style:

screenshot

The following is the same document using instead the scidown_report.css style: screenshot

soldout's People

Contributors

aleray avatar andre-d avatar blaenk avatar bnoordhuis avatar brandonc avatar brief avatar cartera avatar clemensg avatar craigbarnes avatar cuviper avatar cweider avatar fabiocolacio avatar freron avatar gerhobbelt avatar gregleaver avatar julian7 avatar kjk avatar mandarancio avatar mattr- avatar mildsunrise avatar peterxu avatar robin850 avatar roddi avatar rschiang avatar samb avatar soffes avatar spladug avatar stevewolter avatar uranusjr avatar vmg avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

rockfordwei

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.