Marksmith is a GitHub-style markdown editor for Rails apps.
It supports Active Storage attachments and comes with a built-in mardown preview renderer.
Temporary live demo here, under the description field: https://main.avodemo.com/avo/resources/projects/new
<%= marksmith_tag :body %>
Have Bundler add it by running this command:
bundle add marksmith
Or manually install it.
Add this line to your application's Gemfile:
# Gemfile
gem "marksmith"
Install the package.
$ yarn add @avo-hq/marksmith
Import and register it in your application.
import { MarksmithController } from '@avo-hq/marksmith'
application.register('marksmith', MarksmithController)
Note
Marksmith comes bundled with a few dependencies by default.
If you want to manually import those dependencies and import only the controller from the package use the /controller
path.
// Manually import Marksmith's dependencies
import '@github/markdown-toolbar-element'
import { DirectUpload } from '@rails/activestorage'
import { post } from '@rails/request.js'
import { subscribe } from '@github/paste-markdown'
// Import just the controller
import { MarksmithController } from '@avo-hq/marksmith/core'
application.register('marksmith', MarksmithController)
<%= stylesheet_link_tag "marksmith" %>
Use a form helper tag or attach it to your form builder.
<%= marksmith_tag :body, value: "### This is important" %>
or
<%= @form.marksmith :body %>
The field supports a few of the regular options like disabled
, placeholder
, autofocus
, style
, class
, rows
, data
, and value
, but also a custom one.
extra_preview_params
- Sends extra params to the preview renderer.
The renderer is powered by Redcarpet
.
It supports basic styles for headings, strong
, italic
and others.
In your show.html.erb
view or the place where you want to render the compiled markup use the marksmithed
helper and it will run the content through the renderer.
<%= marksmithed post.body %>
It should be as simple as running this command and have it pinned in your importmap.rb
file.
bin/importmap pin @avo-hq/marksmith
The editor supports ActiveStorage uploads using drag and drop and pasting files into the field.
Whe used in Avo it supports injecting assets using the Media Library feature.
Marksmith has this great opt-in feature where you can have your lists continued.
We need to add the ListContinuation
controller too.
import { ListContinuationController, MarksmithController } from '@avo-hq/marksmith'
// or /core for the no-dependencies version
import { ListContinuationController, MarksmithController } from '@avo-hq/marksmith/core'
application.register('marksmith', MarksmithController)
application.register('list-continuation', ListContinuationController)
Contribution directions go here.
The gem is available as open source under the terms of the MIT License.
Marksmith work wonderfully in Avo throught the default markdown field.
active_storage-blurhash
- A plug-n-play blurhash integration for images stored in ActiveStorageavo
- Build Internal Tools with Ruby on Railsclass_variants
- Easily configure styles and apply them as classes. Very useful when you're implementing Tailwind CSS components and call them with different states.prop_initializer
- A flexible tool for defining properties on Ruby classes.stimulus-confetti
- The easiest way to add confetti to your StimulusJS app
If you enjoyed this gem try out Avo. It doubles your engineering speed without hiring extra developers. Teams build Internal Tools, Admin Panels, Content Management Systems, CRMs, and other types of Business Apps 10x faster on top of Ruby on Rails using Avo.
If you ever get a 431 error from Vite, clear your brower's cache for localhost
(chrome://settings/content/all?searchSubpage=localhost).
Run bin/release x.y.z
, use --dry
to skip publishing. This is not idempotent. If releasing fails, take note of where the process left off and continue manually.
In development we use vite-rails
to compile and reload JS & CSS changes.
When releasing we use rollup
to compile the StimulusJS controller and @tailwindcss/cli
to compile the CSS.
The JS code is pushed to npmjs.org on @avo-hq/marksmith
and the CSS file is shipped in the gem.