It is known that output expressions are passed through MakeBoxes to turn the graphics expressions into the box language which the front end uses to represent graphics (when $Output has default option FormatType->StandardForm). For example, if we evaluate:
HoldComplete[Graphics[Disk[]]]
we get a disk wrapped by HoldComplete:

This is because HoldComplete does not stop MakeBoxes from converting its contents to typeset expression:
In[4]:= MakeBoxes@HoldComplete[Graphics[Disk[]]]
Out[4]= RowBox[{"HoldComplete", "[", GraphicsBox[DiskBox[{0, 0}]], "]"}]
So my question is: is it possible to make some additional definitions to MakeBoxes such that wrapping any expression with head MakeBoxesStop will prevent MakeBoxes from converting this expression to typeset form? In this case the expression should look in output as any other expression with no rules associated with symbols in it; in the above case:

P.S. Please do not suggest to use InputForm since I am not satisfied with its default behavior.
![> Hold[DisableFormatting[Graphics[Disk[]]]]](https://i.stack.imgur.com/KvDlg.png)
HoldCompletematters at evaluation stage, and for the purposes of rendering (conversion to boxes) is just a normal wrapper. I don't understand why you mentioned it here at all. What matters for the rendering/FE is the resulting box form of an expression, and this is completely separate topic from evaluation happening in the kernel. - Leonid Shifrin