GithubHelp home page GithubHelp logo

Output only a html file ? about markdown-styles HOT 6 OPEN

mixu avatar mixu commented on September 27, 2024 2
Output only a html file ?

from markdown-styles.

Comments (6)

netmikey avatar netmikey commented on September 27, 2024 1

πŸ‘ While manually using html-inline probably works, I think it'd be nice if this feature was part of the generate-md command line tool.

from markdown-styles.

mike-usa avatar mike-usa commented on September 27, 2024 1

Being new to generate-md, I was quite surprised a packed HTML file wasn't a default output feature.

I came here looking to convert my one standalone markdown file into a more presentable HTML file for those pesky readers that don't like reading markdown πŸ˜„ similar to another project I was looking at, markdown-to-html, which doesn't seem to include the nice code highlighting features that generate-md includes.

I was pleasantly surprised generate-md can convert a whole directory of input files. Even though that isn't part of my current use case, I am considering rescheming to make use of this. Still, a packed output would be nice.

from markdown-styles.

mixu avatar mixu commented on September 27, 2024

this is interesting - it might be possible to write a tool that inlines everything given a set of HTML files which could then be run on the generate-md output

from markdown-styles.

mixu avatar mixu commented on September 27, 2024

actually, looks like substack already wrote that - perhaps you could try running this: https://www.npmjs.com/package/html-inline

If it works well, I'd be happy to add a section into the readme with instructions on how to convert the output into a single file.

from markdown-styles.

cdtinney avatar cdtinney commented on September 27, 2024

I can confirm that html-inline does work.

Rough code for my solution:

// Delete existing file so folder can be created w/ same name
deleteExistingHtmlFile(filePath):
// Generate HTML package
markdownStyles.render(
    markdownStyles.resolveArgs({
      input: inputPath
      output: filePath,
    }),
    () => {
      var inline = inliner({
        basedir: folderPath // Must use folder path of the HTML package
      });
      
      var readStream = fs.createReadStream(filePath);
      readStream.pipe(inline).pipe(concat(body => {
          var bodyUtf8 = body.toString('utf8');
          // Delete HTML package
          deleteFolderRecursive(folderPath);
          // Save the inlined HTML file
          fs.writeFileSync(filePath, bodyUtf8);
        }));
    });

from markdown-styles.

v-ko avatar v-ko commented on September 27, 2024

+1 I would also appreciate this feature being included with generate-md as an option

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.