Code Monkey home page Code Monkey logo

Comments (6)

ifsheldon avatar ifsheldon commented on June 19, 2024 2

+1. I also wonder how this can be implemented. My current idea to work around this is to print raw strings and store these chunks, then once the completion is finished, clear the previous output and render the full content in md using termimad.

from termimad.

Canop avatar Canop commented on June 19, 2024 1

A word of caution: termimad isn't a universal renderer (there's not even any support for images). Its main use cases are for building terminal applications and it may not be suited to render what chatgpt outputs (no idea here).

from termimad.

ifsheldon avatar ifsheldon commented on June 19, 2024 1

OK, I'm looking into it and will try to make a PR to add a simpler example.

from termimad.

Canop avatar Canop commented on June 19, 2024

Why wait for the end ? If you receive those chunks in an application, you can render them like in this example: https://github.com/Canop/termimad/tree/main/examples/render-input-markdown

from termimad.

gngpp avatar gngpp commented on June 19, 2024

OK

from termimad.

ifsheldon avatar ifsheldon commented on June 19, 2024

I think this is the minimum code to do this

use std::io::{stdout, Write};
use std::thread::sleep;
use termimad::crossterm::{cursor, ExecutableCommand};
use termimad::{FmtText, MadSkin};
use termimad::crossterm::terminal::Clear;
use termimad::crossterm::terminal::ClearType::FromCursorDown;

const MARKDOWN_TEXT: &str = r#"
# Hello

This is inline code `print("hello")`.

// wrap the below line in a code block
print("hello")

Here ends it.
"#;

fn main() {
    let skin = MadSkin::default();
    stdout().execute(cursor::Hide).unwrap();
    let mut string_buffer = String::new();
    for (i, chunk) in MARKDOWN_TEXT.chars().enumerate() {
        stdout()
            .execute(cursor::SavePosition).unwrap()
            .execute(Clear(FromCursorDown)).unwrap();
        string_buffer.push(chunk);
        let formatted_text = FmtText::from(&skin, &string_buffer, None); // can have Some(width) to enable hard wrapping
        print!("{}", formatted_text);
        stdout().flush().unwrap();
        let is_last_one = i == MARKDOWN_TEXT.len() - 1;
        if !is_last_one {
            stdout().execute(cursor::RestorePosition).unwrap();
        }
        sleep(std::time::Duration::from_millis(100));
    }
    stdout().execute(cursor::Show).unwrap();
    sleep(std::time::Duration::from_millis(500));
}

I got the idea from

let text = FmtText::from(&self.render_skin, &md, Some(self.render_area.width as usize - 1));

and
let text_view = TextView::from(&self.render_area, &text);

These two lines essentially do the same, which is rendering over and over again rather than incrementally rendering texts.

from termimad.

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.