You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my JavaScript program I have a switch statement with cases testing for certain conditions.
One such case starts with a code block, and looks like this:
// I think that the only way to learn what a spherical coordinate system// consists of is by quoting the// [wikipedia article](https://en.wikipedia.org/wiki/Spherical_coordinate_system)://// > a spherical coordinate system is a coordinate system for// > three-dimensional space where the position of a point is specified by// > three numbers: the radial distance of that point from a fixed origin,// > its polar angle measured from a fixed zenith direction, and the azimuth// > angle of its orthogonal projection on a reference plane that passes// > through the origin and is orthogonal to the zenith, measured from a// > fixed reference direction on that plane.//case"Spherical":
if(typeofconfig.r!=="number"||typeofconfig.phi!=="number"||typeofconfig.theta!=="number"){
When run through docco, this produces some funny output:
As you can see, the lines within the blockquotes are wrapping where the newlines are within the source. They should not (to the best of my knowledge, at least).
The text was updated successfully, but these errors were encountered:
In my JavaScript program I have a switch statement with cases testing for certain conditions.
One such case starts with a code block, and looks like this:
When run through docco, this produces some funny output:
As you can see, the lines within the blockquotes are wrapping where the newlines are within the source. They should not (to the best of my knowledge, at least).
The text was updated successfully, but these errors were encountered: