Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: HTML editor FAQ.

HTML editor FAQ: Difference between revisions

From MoodleDocs
Line 42: Line 42:
*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 HTML editor forum]
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=103418 Students can't upload files using HTML editor] forum discussion
*Using Moodle [http://moodle.org/mod/forum/discuss.php?d=103418 Students can't upload files using HTML editor] forum discussion
*Extending HTMLAREA editor tool set with [http://tracker.moodle.org/browse/CONTRIB-2730 Custom Plugins] a 3rd Toolbar!


[[Category:HTML editor]]
[[Category:HTML editor]]
[[Category:FAQ]]
[[Category:FAQ]]

Revision as of 13:19, 13 May 2011

Be sure to see the HTML editor page for more information.

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

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).

The HTML Editor does not appear

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

  • Prior to 1.9.11 HTMLArea only supported Firefox and Internet Explorer. Thereafter Chrome and Safari (but not in mobile devices) are also supported.
  • GoDaddy http://moodle.org/mod/forum/discuss.php?d=117556
  • Analytics code or advertisement scripts http://moodle.org/mod/forum/discuss.php?d=117034
  • 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
  • Check the config.php file - remove the closing '?>' at the end (it doesn't need it). Make sure you haven't used a broken editor (anything Microsoft wrote, typically) that may have corrupted the file.

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.

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 new with the HTML editor in Moodle 2.0?

See HTML editor 2.0.

See also