https://github.com/msmaiaa/papelito
https://github.com/msmaiaa/papelito
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/msmaiaa/papelito
- Owner: msmaiaa
- License: mit
- Archived: true
- Created: 2023-05-05T08:14:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-06T21:02:17.000Z (about 2 years ago)
- Last Synced: 2024-11-06T21:44:20.263Z (7 months ago)
- Language: Rust
- Size: 29.3 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-leptos - Papelito
README
# Papelito
Papelito is a simple [WYSIWYG](https://en.wikipedia.org/wiki/WYSIWYG) editor for [leptos](https://github.com/leptos-rs/leptos).
The library is in its early stages, "it works" but its modularity is far from what I would consider ideal, so expect breaking changes on future updates.## Usage
```toml
[dependencies]
papelito = {git = "https://github.com/msmaiaa/papelito"}
``````rust
use leptos::*;
use papelito::*;#[component]
fn HomePage(cx: Scope) -> impl IntoView {
let editor_content = create_rw_signal(cx, String::new());
let classes = PapelitoClasses {
actionbar: "rte-actionbar".to_string(),
button: "rte-button".to_string(),
content: "rte-content".to_string(),
selected: "rte-button-selected".to_string(),
editor: "rte-editor".to_string(),
};
// Use the ActionsBuilder struct to build the action bar (it is a optional parameter)
// let actions = ActionsBuilder::new().with_bold().with_heading1().build();
let actions = ActionsBuilder::new().with_default_actions().build();
view! {cx,
}
}