Questions tagged [wysiwym]

WYSIWYM is an acronym for What You See Is What You Mean, and refers to a paradigm for document editing. It is an alternative to the better-known WYSIWYG (what you see is what you get) paradigm, which displays the document on screen as it will be printed.

Description

WYSIWYM is an acronym for What You See Is What You Mean, and refers to a paradigm for document editing.

In a WYSIWYM editor, the user writes the contents in a structured way, marking the content according to its meaning, its significance in the document, instead of designing its appearance. For example, in a WYSIWYM document the user might mark text as the title of the document, the name of a section, or the name of an author. This requires the structure of the document (contents semantics) to be known before editing it. The editor also needs a system for exporting the edited text to generate the final format of the document, following the indicated structure.

The main advantage of this system is the total separation of presentation and content: users can concentrate their efforts on structuring and writing the document, rather than concerning themselves with the appearance of the document, which is left to the export system. Another advantage is that the same content can more easily be exported in different formats.

Useful Links

22 questions
26
votes
5 answers

What are appropriate markup languages for users with disabilities?

Suppose you're developing a web site and blind users will be a significant chunk of your target market. If the web site includes document editing functionality, what would be appropriate WYSIWYM tools? Are languages like Markdown, Textile and Wiki…
Richard JP Le Guen
  • 28,364
  • 7
  • 89
  • 119
14
votes
7 answers

WYSIWYG vs WYSIWYM

Which one is better and ideal in a web based application? Edit: Actually I am developing a community site. So the level of users may vary. Heard about XSS security issues with WYSIWYG editors. Also I am not familiar with WYSIWYM editors and its…
rahul
  • 184,426
  • 49
  • 232
  • 263
12
votes
8 answers

Markdown to convert double asterisks to bold text in javascript

i'm trying to make my own markdown-able textarea like Stackoverflow has done. The goal is to allow people to type **blah blah** in a textarea and have the output in a div be blah blah. I'm having trouble with…
tim peterson
  • 23,653
  • 59
  • 177
  • 299
7
votes
3 answers

Teach Markup or use a WYSIWYG editor?

When it comes to WYSIWYG editors WYSI rarely WYG. The problem I always have is when people paste in formatted text from word. Ideally, what I'm looking for is a way for people to input text into the document while at the same time teaching them…
Armstrongest
  • 15,181
  • 13
  • 67
  • 106
5
votes
1 answer

User reactions to WYSIWYM

I am trying to decide between a WYSIWYG editor (e.g. TinyMCE, CKEditor) and a WYSIWYM (What You See Is What You Mean) editor (e.g. WMD) for my web application. There is a thread on stackoverflow that compares the two approaches. I would like to know…
David
  • 5,184
  • 3
  • 41
  • 67
5
votes
2 answers

Markdown wysiwyg Editor and Preview in same Textarea

I search for a editor to write Markdown syntax and preview in the same textarea, like Bootstrap WYSIHTML5 for html. I don't like a additional preview. The preview in additional element have many scripts, there I can find on the web. But for me is…
bueltge
  • 2,294
  • 1
  • 29
  • 40
4
votes
1 answer

Techs for building a web-based WYSIWYM XML editor

We have a XML schema with a fairly complex grammar for one of our products, for which we need a "basic" graphical editor that is capable of building basic documents based on the schema (complex stuff can always be done programmer-mode). WYSIWYG is…
Alex
  • 499
  • 5
  • 11
3
votes
1 answer

WYSIWYG XML Editor (DTD or RelaxNG or XSD based grammars)

I'm need to make a WYSIWYG XML editor for a custom XML grammar. I have explored all the OpenSource tools that I could find under this domain. Includes VEX, Oxygen, Bitflux... None of them served my purpose. I'm also looking for javascript-based…
gkns
  • 697
  • 2
  • 12
  • 32
2
votes
3 answers

WYSIWYM editor for desktop (.NET/WinForms)

What can I use as WYSIWYM editor for desktop application (preferably .NET/WinForms)? I need functions as paragraphs, headings 1, 2, 3, (un)ordered lists, strong and no other formating (restrictive). Editor wymeditor.org is bad for me purpose because…
user115621
  • 283
  • 1
  • 5
2
votes
0 answers

rails 3 + jquery + markdown editor = has no method

I'm sort of new to Rails, and very new to jquery. I am trying to get a markdown editor working similar to the one I'm writing in now. The rails app also uses twitter-bootstrap and social-share. I am currently testing jquery-wysiwym but get the…
zeroXten
  • 23
  • 2
2
votes
2 answers

Differency normal characters and half characters on keydown

We forked experimental Mediawiki VisualEditor. This WYSIWYM editor work with a hidden textarea and a representation of the content in DOM. When you focus the view, the focus is given to the textarea, and the view listen to keydown event to add each…
1
vote
1 answer

How to control allowed HTML tags in WMD Editor?

I am trying to some-how set the valid HTML tags and attributes users would be able to use in WMD Editor in my site. For example, I want to forbid the user to directly set the font size, color, typeface and so on, which is trivial to do with the…
mmutilva
  • 18,688
  • 22
  • 59
  • 82
1
vote
0 answers

ProseMirror: How to add classes and data to text?

Trying to use the incredibly professional looking ProseMirror WYSIWYM editor to tag words in a text field with IDs, and give tagged words a background-color. E.g. The horses took off ...might result in the html: The
chichilatte
  • 1,697
  • 19
  • 21
1
vote
1 answer

How to manually execute WYMeditor function w/o errors?

For debug, watch jquery.wymeditor.js. I need to execute commands like "Strong", "Indent", etc. from my custom toolbar (to be precise, ribbon) via JavaScript and without errors. 80% are done, I can execute commands, but have a strange error. So, what…
vintprox
  • 931
  • 1
  • 11
  • 24
1
vote
2 answers

which wmd-editor repository to use

I read that the original wmd-editor is no longer maintained so there was an effort to reverse engineer it, hosted on github. However this version is not ready because it references a number of undefined functions, for example: processHeadings is…
hoju
  • 28,392
  • 37
  • 134
  • 178
1
2