get_amp_styles() public method

public get_amp_styles ( )
 private function build_post_content()
 {
     $amp_content = new AMP_Content($this->post->post_content, apply_filters('amp_content_embed_handlers', array('AMP_Twitter_Embed_Handler' => array(), 'AMP_YouTube_Embed_Handler' => array(), 'AMP_Instagram_Embed_Handler' => array(), 'AMP_Vine_Embed_Handler' => array(), 'AMP_Facebook_Embed_Handler' => array(), 'AMP_Gallery_Embed_Handler' => array()), $this->post), apply_filters('amp_content_sanitizers', array('AMP_Style_Sanitizer' => array(), 'AMP_Blacklist_Sanitizer' => array(), 'AMP_Img_Sanitizer' => array(), 'AMP_Video_Sanitizer' => array(), 'AMP_Audio_Sanitizer' => array(), 'AMP_Iframe_Sanitizer' => array('add_placeholder' => true)), $this->post), array('content_max_width' => $this->get('content_max_width')));
     $this->add_data_by_key('post_amp_content', $amp_content->get_amp_content());
     $this->merge_data_for_key('amp_component_scripts', $amp_content->get_amp_scripts());
     $this->add_data_by_key('post_amp_styles', $amp_content->get_amp_styles());
 }