Note: You are currently viewing documentation for Moodle 2.4. Up-to-date documentation for the latest stable version of Moodle may be available here: Text editor FAQ.

Text editor FAQ: Difference between revisions

From MoodleDocs
(delete stub)
 
(18 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{Editing text}}
==I can't find the option to do......==


==I can't find the option to do......==
Click the computer screen icon at the far right of the top row. It will say "Toggle fullscreen mode" when you hover over it. The editor will now appear in a pop-up with the full range of options available (e.g. tables).  
 
==Can I customize the text editor or add other icons like an anchor or horizontal rule?==


Click the icon at the far right of the bottom row (two boxes with an arrow). It will say "Enlarge Editor" when you hover over it. The editor will now appear in a pop-up with the full range of options available (e.g. tables).  
Yes - see the section on customising the editor toolbar in [[Text editor]].


==The HTML Editor does not appear==
==The Text editor does not appear==


Check the following points and/or discussions (in no particular order);
Check the following points (in no particular order);


* HTMLArea only supports Firefox and Internet Explorer
* Is the TinyMCE HTML editor enabled in ''Settings > Site administration > Plugins > Text editors > Manage editors''?  
* GoDaddy http://moodle.org/mod/forum/discuss.php?d=117556
* Is 'Use HTML editor' set in ''Settings > My profile settings > Edit profile''?
* Analytics code or advertisement scripts http://moodle.org/mod/forum/discuss.php?d=117034
* Is JavaScript enabled for my browser?
* Hacked site / injected code http://moodle.org/mod/forum/discuss.php?d=116374
* Editor can be disabled from Administration > Appearance > HTML editor > Use HTML editor or
* Editor can be disabled from user profile (When editing text > Use standard web forms)
* Settings of browser (javascript may be disabled)
* Some custom plugin may break source code


==How can I enable a spell-check?==
==How can I enable a spell-check?==


If you want the HTML editor to have a spell-check button, you need to install aspell 0.50 or later on your server, and enter the correct path to access the aspell binary in ''Administration > Server > [[System paths]]''.
'''NOTE:'''
While the default spell engine is Google spell which  can be changed in ''Settings>Site administration>Plugins>Text editors>TinyMCE HTML editor'', this is no longer supported by Google and will not work. It is due to be removed. See MDL-38867. In browser spell check is recommended.
 
It is possible also to use PSpell or PspellShell. Spell To use spell checking you need to install aspell 0.50 or later on your server, and enter the correct path to access the aspell binary in ''Administration > Server > [[System paths]]''.
 
==How we can disable the spell check button for specific instances in a quiz?==
The spell check is very handy for most circumstances but a quiz where you are looking at spelling and punctuation in student responses kind of defeats the purpose of the question. You can use the theme CSS files to disable the button on a specific question type. Try:
 
  .essay div[title='Spell-check'] {
  display:none;
  }
 
The spell check button should be displayed everywhere '''except''' on the essay question type response box.
 
Suggested by Joshua Westerway.
 
==What is the biggest chunk of text you can edit?==
Maximum size of the forum post text (mysql) is 65535 characters or less if you use multibyte characters. From a forum post, http://moodle.org/mod/forum/discuss.php?d=203023#p885758


==See also==
==See also==


*Using Moodle [http://moodle.org/mod/forum/view.php?f=224 HTML editor forum]
*Using Moodle [http://moodle.org/mod/forum/view.php?f=224 Text editor forum]
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=103418 Students can't upload files using HTML editor] forum discussion


[[Category:HTML editor]]
[[Category:FAQ]]
[[Category:FAQ]]
[[de:Text-Editor FAQ]]

Latest revision as of 07:10, 10 July 2013

I can't find the option to do......

Click the computer screen icon at the far right of the top row. It will say "Toggle fullscreen mode" when you hover over it. The editor will now appear in a pop-up with the full range of options available (e.g. tables).

Can I customize the text editor or add other icons like an anchor or horizontal rule?

Yes - see the section on customising the editor toolbar in Text editor.

The Text editor does not appear

Check the following points (in no particular order);

  • Is the TinyMCE HTML editor enabled in Settings > Site administration > Plugins > Text editors > Manage editors?
  • Is 'Use HTML editor' set in Settings > My profile settings > Edit profile?
  • Is JavaScript enabled for my browser?

How can I enable a spell-check?

NOTE: While the default spell engine is Google spell which can be changed in Settings>Site administration>Plugins>Text editors>TinyMCE HTML editor, this is no longer supported by Google and will not work. It is due to be removed. See MDL-38867. In browser spell check is recommended.

It is possible also to use PSpell or PspellShell. Spell To use spell checking you need to install aspell 0.50 or later on your server, and enter the correct path to access the aspell binary in Administration > Server > System paths.

How we can disable the spell check button for specific instances in a quiz?

The spell check is very handy for most circumstances but a quiz where you are looking at spelling and punctuation in student responses kind of defeats the purpose of the question. You can use the theme CSS files to disable the button on a specific question type. Try:

 .essay div[title='Spell-check'] {
 display:none;
 }

The spell check button should be displayed everywhere except on the essay question type response box.

Suggested by Joshua Westerway.

What is the biggest chunk of text you can edit?

Maximum size of the forum post text (mysql) is 65535 characters or less if you use multibyte characters. From a forum post, http://moodle.org/mod/forum/discuss.php?d=203023#p885758

See also