Skip to content
#

readme

Here are 599 public repositories matching this topic...

cseas
cseas commented Mar 29, 2020

GitHub provides an option to initialise a README file while creating a repository. For this, it copies the same content from the Description into the README.

Now if someone wrote some markdown, expecting it to work, it would work in the README file but the Description is all rendered as plain text. Can markdown be enabled for repository descriptions too? That would make life a bit easier.

N

mattogrady87
mattogrady87 commented Dec 19, 2018

I have some notes that I'm hosting locally with grip for easy access. In these notes I have some .sh files linked. If I click the links in vscode it opens them up and displays them as I originally wrote them.

The only issue with grip is that when I open them, they have no whitespace or newlines where the original scripts have it. It's basically all one long, wrapped line.

Possi

gfazioli
gfazioli commented Jun 25, 2019

hi there, in my package.json I have

... 
"build:utils": "jsdoc2md --files ./resources/assets/jsx/app/utils/*.ts* --configure ./jsdoc2md.json > ./resources/assets/jsx/docs/utils.md",

if I run by shell (MacOS, jsdoc2md v5.0.0)

$ jsdoc2md --files ./resources/assets/jsx/app/utils/*.ts* --configure ./jsdoc2md.json > ./resources/assets/jsx/docs/utils.md

all works fine,

flamusdiu
flamusdiu commented Nov 28, 2017

I am creating a custom TOC to fix #104 for me; however, it's not that easy.

var toc = require('markdown-toc');
var md = '# heading\n## heading 2\n### heading 3';
var result = toc(md); // links are incorrect in the toc for Angular

var correct_toc = [];
result.json.forEach(function(h) {
    // fixed h.content
    correct_toc.push(new_h);
}

var toc_md = toc.bullets(corre
ge-fa
ge-fa commented Jul 19, 2018

Hi,

We would like to ask for a review of the docs of Schleuder, a GPG-enabled mailing list manager with resending capabilities, and related projects:

Thanks in advance, and for your work.

Cheers,
Georg

oliviercailloux
oliviercailloux commented Aug 23, 2018

Perhaps you could add a word in the README file for saying that asciidoctor format is supported as well? (And what else?)

Also, apparently there’s no support for recurse option in awesome_bot but I was able to make it work with find -name "*.adoc" -print0 | xargs -0 awesome_bot in the .travis.yml file. Perhaps this would also deserve mention in the doc.

davidak
davidak commented Oct 15, 2018

The current editable template is a great start. It's right there and you just have to edit it, like you do with your README.md in your editor. (That's a little nerdy, but not elitist, so i would keep that design. I think programmers love it!) You don't have to install anything and have a preview next to it.

We should extend it in a way so it still feels this lightwight.

I like the idea to ha

balupton
balupton commented Sep 16, 2015

<!-- EXAMPLE[./example.js] --> will output the file in a syntax code block, and replaces require('./') with require('the-package-name') - useful for including example code files

<!-- CODE[./input.js] --> will output the file in a syntax highlighted code block - useful for including code files

<!-- SOURCE[./output.md] --> will output the file as is, no code block wrapper - useful for in

Improve this page

Add a description, image, and links to the readme topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the readme topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.