Results 25 comments of Jesse Spangenberger

Well, I can look into it. It's not completely setup to work directly installed by `pip` due to some things the package from AUR does. Also, it really it only...

@RunasSudo Yeah, I never got to working that in properly. I'll need to actually fix it at some point. Sorry for the confusion.

@ssreekanth yup, I have noticed this as well. I guess checking to see if the server is started (then starting it) or just skipping creating the client. Though, I am...

Ahh, that's much easier. Why does it strip spaces in the title but then when you slugify it, it adds the dashes at for the empty spaces? For example: `Heading...

This is what I have from what you pointed out: ```javascript var result = toc('# me \n## me two\n### me three', { linkify: function(tok, text, slug, options) { const regex...

So, that fixes the links but still doesn't work for Angular. I guess I need a custom renderer to add the proper syntax for the `a` tags.

I ended up just changing the rules: ```javascript md.renderer.rules.link_open = function(tokens, idx, options /* env */) { var title = tokens[idx].title ? (' title="' + Remarkable.utils.escapeHtml(Remarkable.utils.replaceEntities(tokens[idx].title)) + '"') : '';...

Just a note: I ended up using `My Link Text` and a custom onClick method to use the Angular Router process to get to the right page locations. I would...

Umm, I would have to use [doowb/unlazy-loader](https://github.com/doowb/unlazy-loader) to get this to work; however, Angular CLI doesn't seem to provided anyway to inject the plugin that I have found without configuring...

Yeah, you can run `ng eject` but that makes the webpack config static and you lose the cli stuff. Thanks for the response. You can see more from [angular/angular-cli#1665](https://github.com/angular/angular-cli/issues/1656)