Rails markdown editor with live preview [closed] - ruby-on-rails

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Are there any markdown editors that integrate with rails (eg in a gem) and offer live preview?

Checkout markdown.js and showdown. You could rig them up to parse whatever the markdown input is whenever certain events fire (i.e. a user releasing a key when typing in the markdown textarea). I'm not aware of any other embeddable markdown editors with live previews, but it seems it would be easy enough to make one with one of these libraries.

Check out the gem below, its not well documented but seems to work
https://github.com/zethussuen/epic-editor-rails

Related

Full-Text Search pdf and word file content using ruby [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 days ago.
Improve this question
I am working on a ruby on rails project.
we want to develop a feature that can :
upload various pdf, word files into the system
search a keyword among the content and titles among all the files uploaded, and the show matched result.
for example, I input a keyword, all word and pdf files that contains that keyword in the content and title will show up.
any known tools and libs can help me do that?
thank you!

Is there any document(doc,docx) editor available in javascript? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Can any one suggest me any library in javascript(client end) document editor where user can view and edit the documents like doc, docx, odf etc.
I have tried webodf but it doesn't support doc/docx. Also, it's not getting implemented properly as editor.
Any suggestions are welcome.
Your best bet is to look for converters, and then edit the converted content.
I've been looking for a working solution now for a couple of weeks, and the best I've found to date is docx2html.
Depending on your development platform you might also want to Google 'ONLYOFFICE Document Server Community Edition'. They have in page editors for Word, Excel and Powerpoint - but they're asp. It's an open source platform and available on Github. Might be worth a look though.

Capture screenshots for a Ruby on Rails application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have a Rails app that I want to capture a screenshot of a webpage when the user enters a url.
Is it possible to do this in Rails (is there any gem that would do this?)
If not, are there any reliable services that generate live screenshots
I use IMGKit gem for that: https://github.com/csquared/IMGKit
Related topic: How to respond_to PNG or JPG in Rails and generate image from HTML?
ScreenCap gem which uses PhantomJS under the hood. Grab whole pages or just specific divs, or even exact x y coordinates.
I have used GrabzIt for this. This is quite simple.

Public CLSI servers [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Does anyone know any publicly accessible CLSI (Common LaTeX Service Interface) servers other than ScribTeX? (nothing wrong with ScribTeX, in fact it's great, but I was wondering if there are any alternatives)
EDIT: I'm not looking for online LaTeX equation editors or proprietary APIs (e.g. MonkeyTex), I'm asking specifically about CLSI because it seems to be the standard for server-side LaTeX compilation.
I don't know if it's a CLSI, but there is LaTeXLab, built on google's app engine. http://code.google.com/p/latex-lab/
I know it's a little bit old question but you can use
https://github.com/overleaf/clsi
From the overleaf project
Not sure it's a CLSI server but http://rogercortesi.com/eqn/ is very nice and can probably be scripted, eg. http://rogercortesi.com/eqn/index.php?filename=&latextext=%5Czeta%282%29%3D%5Cpi%5E2%2F6&outtype=png&bgcolor=white&txcolor=black&res=150&antialias=1

Ruby library to generate graphics from text? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm working in Rails and I'm looking for a library/gem/plugin to generate a graphic from text. Google Maps doesn't allow you to overlay text, only graphics so I'm looking for a back door to overlay text. Suggestions?
Take a look at RMagick.
To draw text using RMagick, you need to use one the text or annotate methods.
You need something like RMagick, though that particular library has been known to leak memory.
libgd can do this, and has bindings for many different languages, including Ruby

Resources