Difference between revisions of "Knowls"

From WeBWorK_wiki
Jump to navigation Jump to search
(Fix knowlLink() call)
(added historical tag and gave updated problem link)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
<h2>Knowls</h2>
 
  +
{{historical}}
  +
  +
<p style="font-size: 120%;font-weight:bold">This problem has been replaced with [https://openwebwork.github.io/pg-docs/sample-problems/problem-techniques/Knowls.html a newer version of this problem]</p><h2>Knowls</h2>
   
 
<!-- Header for these sections -- no modification needed -->
 
<!-- Header for these sections -- no modification needed -->
Line 43: Line 45:
 
\{
 
\{
 
knowlLink("a math knowl",
 
knowlLink("a math knowl",
escapeSolutionHTML(EV3P("the sine function is \\(\\sin(x)\\)")), base64=>1);
+
value=>escapeSolutionHTML(EV3P("the sine function is \\(\\sin(x)\\)")), base64=>1);
 
\}
 
\}
 
END_TEXT
 
END_TEXT

Latest revision as of 11:41, 29 June 2023

This article has been retained as a historical document. It is not up-to-date and the formatting may be lacking. Use the information herein with caution.

This problem has been replaced with a newer version of this problem

Knowls


This code fragment shows how to apply a javascript-enabled popup bit of knowledge (a knowl).

Problem Techniques Index

PG problem file Explanation
BEGIN_TEXT
$PAR
Here is a knowl
\{ knowlLink("click me",
value=>'This is the inside of a knowl.  ' .
'If you click again, I will go away') \}

$PAR
Here is another knowl
\{ knowlLink("click me", 
url=>'url_of_file_with_information') \}

$PAR
\{
knowlLink("a math knowl",
value=>escapeSolutionHTML(EV3P("the sine function is \\(\\sin(x)\\)")), base64=>1);
\}
END_TEXT

Knowls appear in the text section of the problem file. You can specify a value, as in the first example, which gives the text to appear in the Knowl, or the URL of a file with the HTML content for the knowl, as shown in the second example here.

To include math text in the knowl, it is necessary to pipe the text through EV3P and escapeSolution HTML, as shown in the third example.

return knowlLink($display_text,
url=>$envir{'localHelpURL'}.$infoRef);

As another example, here is the last line of the definition of helpLink() where the knowl containing the help message is created after defining the variables which contain the url for the help file.

Templates by Subject Area


Problem Techniques Index