Given the following input:
/// A reasonable approximation of PI
pub const PI: f32 = 3.14159;
The following output is generated
I would instead expect the following to be generated:
/**
* A reasonable approximation of PI
*/
#define PI 3.14159
So far I have successfully generated docs for other types, but constants do not seem to have their documentation brought along.