-
Notifications
You must be signed in to change notification settings - Fork 117
Closed
Labels
Description
I see places where <p>
or </p>
exists without its complement. It seems not to mess up the page somehow, but it stills feels like an issue.
There even seems to potentially be a pattern.
If I include just a sentence of standard Markdown, that gets prefixed by <p>
and does not get the corresponding </p>
.
Here is an example that was a sentence by itself,
I am a proponent of open source software and transparent academic research. I am an active member of the [Julia](https://julialang.org/) community.
which became
<p>I am a proponent of open source software and transparent academic research. I am an active member of the <a href="https://julialang.org/">Julia</a> community.
and another, which was just a title on a Markdown page (# Research
),
<p><h1 id="research"><a href="#research">Research</a></h1>
Alternatively, this
@@font-weight-bold,mb-0 The Anatomy of Trading Algorithms @@
@@mb-0 with [Sunil Wahal](https://asu.pure.elsevier.com/en/persons/sunil-wahal). [SSRN](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3497001) @@
We study the anatomy of four widely used standardized institutional trading algorithms
representing \$675 billion in demand from 961 institutions between 2012 and 2016. The central tradeoff in these algorithms is between the desire to trade and transaction costs. Large parent orders generate hundreds of child orders which strategically employ the price, time, and display priority rules embodied in market structure to navigate this tradeoff. The distribution of child orders is non-random, generating strategic runs which oscillate between providing and taking liquidity. Price impact occurs both at the time an order is submitted to the book (regardless of whether it is filled), and at the time of execution. Passive child orders have much lower likelihood of execution but still incur substantial price impact. Conversely, marketable orders, even though immediately executable, do not necessarily guarantee execution and generate even larger price impact.
turned into this
<div class="font-weight-bold mb-0">The Anatomy of Trading Algorithms</div> <div class="mb-0">with <a href="https://asu.pure.elsevier.com/en/persons/sunil-wahal">Sunil Wahal</a>. <a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3497001">SSRN</a></div> We study the anatomy of four widely used standardized institutional trading algorithms representing $675 billion in demand from 961 institutions between 2012 and 2016. The central tradeoff in these algorithms is between the desire to trade and transaction costs. Large parent orders generate hundreds of child orders which strategically employ the price, time, and display priority rules embodied in market structure to navigate this tradeoff. The distribution of child orders is non-random, generating strategic runs which oscillate between providing and taking liquidity. Price impact occurs both at the time an order is submitted to the book (regardless of whether it is filled), and at the time of execution. Passive child orders have much lower likelihood of execution but still incur substantial price impact. Conversely, marketable orders, even though immediately executable, do not necessarily guarantee execution and generate even larger price impact.</p>
which has the trailing </p>
at the very end.
It doesn't seem to happen within an "environment" like lists. And it doesn't always happen. But in my relatively simple page, I see it in about 10 spots.