mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
remove extra reference
This commit is contained in:
parent
90ddac2033
commit
0276e92c5c
1 changed files with 3 additions and 2 deletions
|
|
@ -9,12 +9,13 @@ use gtk::{
|
|||
TextTag,
|
||||
};
|
||||
|
||||
/// Apply `ANSI` format to new buffer
|
||||
/// Apply `ANSI`/`SGR` format to new buffer
|
||||
pub fn format(source_code: &str) -> Vec<(TextTag, String)> {
|
||||
// Init new line buffer
|
||||
let mut buffer = Vec::new();
|
||||
|
||||
for entity in categorise_text(&source_code) {
|
||||
// Begin entities parse
|
||||
for entity in categorise_text(source_code) {
|
||||
// Create new tag from default preset
|
||||
let tag = Tag::new();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue