Skip to content

Commit 91c9068

Browse files
committed
Fix scala-js#160: HTML escape scaladoc
1 parent cd40c4d commit 91c9068

File tree

5 files changed

+241
-241
lines changed

5 files changed

+241
-241
lines changed

src/main/scala/org/scalajs/dom/raw/Audio.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ class AudioContext extends EventTarget {
120120
def createGain(): GainNode = js.native
121121

122122
/** Creates a MediaElementAudioSourceNode associated with an HTMLMediaElement.
123-
* This can be used to play and manipulate audio from {{{<video>}}} or
124-
* {{{<audio>}}} elements.
123+
* This can be used to play and manipulate audio from &lt;video&gt; or
124+
* &lt;audio&gt; elements.
125125
*
126126
* @param myMediaElement An HTMLMediaElement object that you want to feed
127127
* into an audio processing graph to manipulate.
@@ -238,8 +238,8 @@ class OfflineAudioContext(numOfChannels: Int, length: Int, sampleRate: Int) exte
238238

239239

240240
/** The AudioNode interface is a generic interface for representing an audio
241-
* processing module like an audio source (e.g. an HTML {{{<audio>}}} or
242-
* {{{<video>}}} element, an OscillatorNode, etc.), the audio destination,
241+
* processing module like an audio source (e.g. an HTML &lt;audio&gt; or
242+
* &lt;video&gt; element, an OscillatorNode, etc.), the audio destination,
243243
* intermediate processing module (e.g. a filter like BiquadFilterNode or
244244
* ConvolverNode), or volume control (like GainNode).
245245
*
@@ -924,7 +924,7 @@ trait GainNode extends AudioNode {
924924
}
925925

926926
/** The MediaElementAudioSourceNode interface represents an audio source
927-
* consisting of an HTML5 {{{<audio>}}} or {{{<video>}}} element.
927+
* consisting of an HTML5 &lt;<audio&gt; or &lt;video&gt; element.
928928
* It is an AudioNode that acts as an audio source.
929929
*
930930
* A MediaElementSourceNode has no inputs and exactly one output, and is

0 commit comments

Comments
 (0)