egoist/docute

Do you want to work on this issue?

You can request for a bounty in order to promote it!

embed code fragments from external sources #205

jthegedus posted onGitHub

I would like to import fenced code from GitHub repo files similar to https://docsify.js.org/#/embed-files?id=embedded-code-fragments

Is this on the roadmap?


Yeah but probably using a different syntax, like:

<!-- embed foo.js as code block -->
#embed(/foo.js code language="js")

<!-- result: -->
```js
// content in foo.js
```

A fragment:

#embed(/foo.md fragment)

<!-- result: -->

something to embed

Where foo.md looks like:

# title

<!-- docute-embed-start -->

something to embed

<!-- docute-embed-end -->
posted by egoist about 6 years ago

Sounds great! A couple more things :stuck_out_tongue: is it possible to add support for:

  • these files to be externally loaded?
  • adding arbitrary fencing?

For instance:

<!-- embed example.js as code block -->
#embed(
  https://raw.githubusercontent.com/someuser/somerepo/code/example.js
  type=code
  language="js"
  fence="some-demo"
)

<!-- .../example.js -->
...
/// [some-demo-start]
...
/// [some-demo-end]
...

<!-- result -->
// some content from example.js within the /// [some-demo]

and then

<!-- import content from other .md file -->
#embed(
  https://raw.githubusercontent.com/someuser/somerepo/example.md
  type=fragment
  fence="some-fragment"
)

<!-- .../exmaple.md -->
...
<!-- some-fragment-start -->
something to embed
<!-- some-fragment-end -->
...

Being able to define the fence allows multiple partials from a single file to be imported.

Externally loading code decouples the need for it to live alongside the documentation, say in an examples repo.

posted by jthegedus about 6 years ago

The api.processMarkdown(fn) API now can return a Promise:

<img width="327" alt="屏幕快照 2019-03-23 δΈ‹εˆ6 30 29" src="https://user-images.githubusercontent.com/8784712/54864996-c0b60480-4d99-11e9-8b7f-c2011c2abbaf.png">

You can probably implement it as a plugin using this API:

const embedPlugin = () => {
  return {
    name: 'embed',
    extend(api) {
      api.processMarkdown(async markdown => {
        return modifiedMarkdown
      })
    }
  }
}

new Docute({
  plugins: [embedPlugin()]
})
posted by egoist about 6 years ago

Sweet, I'll give this a go soon! Cheers!

posted by jthegedus about 6 years ago

@issuehunt has funded $100.00 to this issue.


posted by IssueHuntBot almost 6 years ago

Can i take this?

posted by janat08 almost 6 years ago

@janat08 Feel free. I got caught up with life!

posted by jthegedus almost 6 years ago

@egoist please merge, its been half a year

posted by janat08 about 5 years ago

Fund this Issue

$100.00
Funded
Only logged in users can fund an issue

Pull requests

Recent activities

janat08 submitted an output to  egoist/ docute# 205
almost 6 years ago
issuehunt funded 100.00 for egoist/docute# 205
almost 6 years ago