You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+83-15
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,9 @@ It supports Active Storage attachments and comes with a built-in mardown preview
8
8
9
9

10
10
11
+
> [!WARNING]
12
+
> Marksmith is at the initial stage of development. It's nearing a beta release, but the API might change and bugs are expected. Please continue to use the library and report any issues in the GitHub repo.
13
+
11
14
Temporary live demo here, under the description field: [https://main.avodemo.com/avo/resources/projects/new](https://main.avodemo.com/avo/resources/projects/new)
12
15
13
16
## Usage
@@ -18,7 +21,7 @@ Temporary live demo here, under the description field: [https://main.avodemo.com
18
21
19
22
## Installation
20
23
21
-
### 1. Add `marksmith` to your `Gemfile`
24
+
####1. Add `marksmith` to your `Gemfile`
22
25
23
26
Have Bundler add it by running this command:
24
27
@@ -35,20 +38,27 @@ Add this line to your application's Gemfile:
35
38
gem "marksmith"
36
39
```
37
40
38
-
### 2. Install the NPM package to import the StimulusJS controller.
41
+
####2. Install the NPM package to import the StimulusJS controller.
39
42
40
-
Install the package.
43
+
Install the package from npmjs.org.
41
44
42
45
```bash
43
46
$ yarn add @avo-hq/marksmith
44
47
```
45
48
46
-
Import and register it in your application.
49
+
Or pin it using importmap.
50
+
51
+
```bash
52
+
bin/importmap pin @avo-hq/marksmith
53
+
```
54
+
55
+
Import and register the controllers in your application. The `ListContinuationController` is optional and only needed if you want to have continued lists in your markdown.
### 3. Add the style tag to your `application.html` layout
81
+
####3. Add the style tag to your `application.html` layout
72
82
73
83
```erb
74
84
<%= stylesheet_link_tag "marksmith" %>
75
85
```
76
86
77
-
### 4. Use it
87
+
####4. Use it
78
88
79
89
Use a form helper tag or attach it to your form builder.
80
90
81
91
```erb
82
92
<%= marksmith_tag :body, value: "### This is important" %>
83
93
or
84
-
<%= @form.marksmith :body %>
94
+
<%= form.marksmith :body %>
85
95
```
86
96
87
-
## Options
97
+
## Configuration
98
+
99
+
Marksmith accepts a few configuration options.
100
+
101
+
### Field options
88
102
89
103
The field supports a few of the regular options like `disabled`, `placeholder`, `autofocus`, `style`, `class`, `rows`, `data`, and `value`, but also a custom one.
90
104
91
105
`extra_preview_params` - Sends extra params to the preview renderer.
92
106
107
+
`enable_file_uploads` - Whether to enable file uploads.
108
+
109
+
`upload_url` - The URL to use for file uploads. If not provided, the editor will use the `rails_direct_uploads_url` helper.
110
+
111
+
```erb
112
+
<%= marksmith_tag :body,
113
+
disabled: true,
114
+
placeholder: "Write your best markdown here.",
115
+
extra_preview_params: { foo: "bar" },
116
+
enable_file_uploads: true,
117
+
upload_url: nil
118
+
%>
119
+
```
120
+
121
+
### Eject configuration file
122
+
123
+
Marksmith comes with a default configuration file that you can eject to your app.
124
+
125
+
```bash
126
+
bin/rails generate marksmith:install
127
+
```
128
+
129
+
This will create a `config/initializers/marksmith.rb` file in your app.
130
+
131
+
### Mount path
132
+
133
+
The engine is mounted by default at `/marksmith`. You can change it by setting `Marksmith.configuration.mount_path` to a different path.
134
+
135
+
```ruby
136
+
# config/initializers/marksmith.rb
137
+
Marksmith.configure do |config|
138
+
config.mount_path ="/markdown"
139
+
end
140
+
```
141
+
142
+
### Mounting the engine
143
+
144
+
The engine is mounted by default, but you can disable it by setting `Marksmith.configuration.automatically_mount_engine` to `false` and then manually mount the engine in your `routes.rb` file.
145
+
146
+
```ruby
147
+
# config/routes.rb
148
+
Rails.application.routes.draw do
149
+
mount Marksmith::Engine => Marksmith.configuration.mount_path
150
+
end
151
+
```
152
+
93
153
## Built-in preview renderer
94
154
95
155
The renderer is powered by [`Redcarpet`](https://github.com/vmg/redcarpet).
@@ -101,13 +161,15 @@ In your `show.html.erb` view or the place where you want to render the compiled
101
161
<%== marksmithed post.body %>
102
162
```
103
163
104
-
## Using with importmap
164
+
> [!WARNING]
165
+
> Using the `<%==` tag will output the raw HTML, so ensure you sanitize the content to avoid XSS attacks.
166
+
>
167
+
> See how we do it [here](https://github.com/avo-hq/avo/blob/main/app/views/marksmith/shared/_rendered_body.html.erb#L2).
0 commit comments