问题标签 [redcloth]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1901 浏览

ruby - RedCloth 正在破坏我的 Rails 3 博客

像Textile这样的帖子感觉非常必要,但这让我很头疼。bundle package并且bundle install都工作正常,并确认 RedCloth 设置为最新的稳定版本(4.2.2)。现在我在 ruby​​ 1.9.2p0 和 rails 3.0.7 上。

但是,当我尝试运行本地服务器时,我看到:

posts_controller 中的第 1 行是require 'RedCloth'. 除了添加 json 格式和私有身份验证方法之外,我没有对基本的 Rails 脚手架进行任何其他更改,这两者都不应该影响这一点。

我正在使用部分来呈现我的帖子。它目前看起来像这样:

宝石文件:

(rake-compiler 是为了尝试遵循这些说明,顺便说一句:http ://www.ruby-forum.com/topic/484752 [我用 ruby​​ 1.9.1 和 1.9.2 都试过了,没有骰子或其他我不会在这里])

蒂亚:)

0 投票
2 回答
2943 浏览

ruby-on-rails - 如何在 Windows 上安装 RedCloth?

运行时gem install RedCloth(在 Windows XP 上)我得到:

为什么我会收到此错误?

然后我添加require 'RedCloth'config/environment.rb,并尝试运行rails s,但不幸的是我得到了:

我究竟做错了什么 ?

我使用 Rails 3.0.1、Ruby 1.9.2。

0 投票
1 回答
949 浏览

ruby-on-rails-3 - 如何将redcloth与coderay集成

我想将语法高亮与 redcloth 一起使用。

coderay的描述说:

用 Ruby 编写的选定语言的快速简单的语法高亮显示。带有 RedCloth 集成和 LOC 计数器。1

但是我没有找到有关如何执行此操作的文档?

我应该把代码放在哪里做高亮显示?我想把它放进去module ApplicationHelper是个好主意吗?

0 投票
0 回答
1174 浏览

ruby-on-rails - 无法在 Windows 中加载 1.9/redcloth_scan

我在这里搜索,没有得到任何线索。

这是我运行时的错误消息rake db:schema:load RAILS_ENV=production

然后我打开了文件c:\Ruby192\lib\ruby\gems\1.9.1\gems\RedCloth-4.2.8\lib\redcloth.rb,不知道为什么,它会抱怨C:\Ruby192\lib\ruby\gems\1.9.1\gems\RedCloth-4.2.8\ext\redcloth_scan找不到文件夹(可能)吗?所以在这里粘贴代码片段:

0 投票
1 回答
793 浏览

ruby-on-rails - Using helpers (or render partials) from custom RedCloth tags

I'm trying to call a view helper from a custom RedCloth tag and am having absolutely no luck at all. All of the examples I can find have the custom tag method create and return a literal string without calling any other method at all.

I am trying to create a custom RedCloth tag to output a weekly schedule; the code for which has already been written in a helper as it is also used in other areas of the application.

So here's the (massively reduced) code that my problem boils down to:

app/views/page/show.html.erb:

app/helpers/pages_helper.rb:

app/helpers/schedule_tag.rb:

app/helpers/schedule_helper.rb:

When executed, rails claims the following:

I can make a little bit of progress by changing from using a helper to a class, but that class is still having issues using the standard helpers:

/app/helpers/schedule_builder.rb:

And rails says:

So what am I to do? Am I missing something completely obvious and ought to bury my head in shame, or is it simply not possible to call helpers from anywhere one fancies? Do I need to just suck it up and get the custom tag to duplicate all of the code in my ScheduleHelper module?

Any help would be greatly appreciated.

0 投票
0 回答
246 浏览

ruby-on-rails - 分段错误 wrt RedCloth 和 Ruby 调试 gem

我尝试运行一个非常基本的命令来查看我的路由 wrt 所有控制器操作,使用rake routes. 我收到以下错误

链接http://railsforum.com/viewtopic.php?id=41077也似乎已经过时,因为它是 Rails 3 中的一种解决方法。

我提到了这个链接:-为什么 Ruby 只在我的系统上抛出分段错误,并且只在这个 Rails 应用程序中?. 但这似乎并没有真正解决我的问题,因为还有其他 gem 依赖项需要以下 gem:-

任何输入都会非常有帮助。

谢谢..

0 投票
8 回答
18316 浏览

ruby - 安装 RedCloth-4.2.9 安装 Linux 时无法构建 gem 原生扩展

我想安装Octopress在我的电脑上。我试着这样做

八达通文档。

当我跑

我收到错误消息

所以,我跑

然后,我再次收到一条错误消息:

我没有学到任何关于红宝石的知识。

0 投票
1 回答
303 浏览

ruby-on-rails - 红布和铁轨

我想使用 RedCloth gem,我安装它,在我的 gemfile 中我放 -> gem 'RedCloth' 在我的 show.html.erb 我放 ->

我看到了简单的 html 语法,而不是我使用的

它工作完美,它不安全
@post.text -> 某些用户放置

当我输入时,<script> alert('!!!') </script>我看到了“!!!” 处于警戒状态

如何安全使用 RedCloth(或推荐其他宝石)

0 投票
2 回答
1231 浏览

converter - 将 MediaWiki 标记转换为 Textile 标记

我有一个问题:0 在我的工作地点,我们有两个 wiki 系统,我负责找到一种从 MediaWiki 迁移到 redmine wiki 的方法——唯一的问题是他们使用不同的标记语言(WikiText 与 Textile)和一个可能的解决方案(Pandoc)只是另一种方式:0 任何关于如何做到这一点的建议将不胜感激!!!

0 投票
1 回答
496 浏览

ruby-on-rails - 截断 - 清理后的意外结果(RedCloth.new(object))

我有一些想要使用 RedCloth 输出的文本。我试图弄清楚这是如何工作的,但我无法得到我想要的结果。

使用代码:

结果:

*一些*

预期结果:

有些我...